Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone



Clound SSD Virtual Server

iOS/iPhone NSURLRequest Example (Objective-C)

iOS/iPhone NSURLRequest Example (Objective-C) สำหรับ NSURLRequest บน Objective-C เป็นการประกาศชนิด Object นั้น ๆ ใช้ในกรณีที่ต้องการส่ง Request ด้วย URL ต่าง ๆ ที่ต้องการ ด้วย NSURLRequest จะถูกเรียกใช้งานด้วย NSURLConnection อีกทีหนึ่ง ซึ่งเปรียบแล้ว NSURLRequest เป็นตัวตัวชี้บอกปลายทางของ URL (Website) ส่วน NSURLConnection เป็นตัวที่ทำหน้าที่ Connect ไปยังหลายทางที่ต้องการ

iOS/iPhone NSURLRequest Example (Objective-C)

iOS/iPhone NSURLRequest Example (Objective-C)


ตามที่ได้เกรินไว้ NSURLRequest จะทำงานร่วมกับ NSURLConnection ซึ่งเราสามารถที่จะ delegate method ต่าง ๆ ได้หลายตัว และสามารถอ่านเพิ่มเติมเกี่ยวกับ NSURLConnection ได้จากบทความนี้

    NSString *url=@"https://www.thaicreate.com/url/string.php";
    NSURLRequest *theRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:url]];
    
    NSData *response = [NSURLConnection sendSynchronousRequest: theRequest returningResponse: nil error: nil];
    NSString * theString = [[NSString alloc] initWithData:response encoding:NSUTF8StringEncoding];
    
    lblContent.text = theString;


iOS/iPhone NSURLConnection (Objective-C)


Example การใช้งาน NSURLRequest เพื่อ Request URL ร่วมกับ NSURLConnection

string.php
<?php
echo "Server Time = ".date("Y-m-d H:i:s")
?>

ไฟล์ php ง่าย ๆ ที่อยู่บน Server

iOS/iPhone NSURLRequest Example (Objective-C)

ทดสอบเรียกผ่าน Web Browser








iOS/iPhone NSURLRequest Example (Objective-C)

เริ่มต้นด้วยการสร้าง Application บน Xcode แบบ Single View Application

iOS/iPhone NSURLRequest Example (Objective-C)

เลือกและไม่เลือกรายการดังรูป

iOS/iPhone NSURLRequest Example (Objective-C)

ตอนนี้หน้าจอ View จะยังว่าง ๆ

iOS/iPhone NSURLRequest Example (Objective-C)

ออกแบบ Label และ Button ดังรูป

iOS/iPhone NSURLRequest Example (Objective-C)

ใน Class ของ .h ให้ทำการเชื่อม IBOutlet และ IBAction ให้เรียบร้อย จากนั้นเขียน Code ดังนี้

ViewController.h
//
//  ViewController.h
//  NSURLRequestApp
//
//  Created by Weerachai on 12/8/55 BE.
//  Copyright (c) 2555 Weerachai. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController
{
    IBOutlet UILabel *lblContent;
}

- (IBAction)btnGetContent:(id)sender;

@end


ViewController.m
//
//  ViewController.m
//  NSURLRequestApp
//
//  Created by Weerachai on 12/8/55 BE.
//  Copyright (c) 2555 Weerachai. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
	// Do any additional setup after loading the view, typically from a nib.
}

- (IBAction)btnGetContent:(id)sender {
    
    NSString *url=@"https://www.thaicreate.com/url/string.php";
    NSURLRequest *theRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:url]];
    
    NSData *response = [NSURLConnection sendSynchronousRequest: theRequest returningResponse: nil error: nil];
    NSString * theString = [[NSString alloc] initWithData:response encoding:NSUTF8StringEncoding];
    
    lblContent.text = theString;
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (void)dealloc {
    [lblContent release];
    [super dealloc];
}

@end









Screenshot

iOS/iPhone NSURLRequest Example (Objective-C)

หน้าจอ View

iOS/iPhone NSURLRequest Example (Objective-C)

คลิกที่ Get Content เพื่ออ่านจาก Request จาก URL

   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2012-12-13 09:21:25 / 2017-03-26 08:58:32
  Download : Download  iOS/iPhone NSURLRequest Example (Objective-C)
 Sponsored Links / Related

 
iOS/iPhone Web View (UIWebView) Open Web Site and HTML (Objective-C, iPhone, iPad)
Rating :

 
iOS/iPhone Get the String contents from URL (Website)
Rating :

 
iOS/iPhone Image URL Display an Image from URL (Website)
Rating :

 
iOS/iPhone Display Image on Table View from JSON URL (Web Site)
Rating :

 
iOS/iPhone NSURLConnection (Objective-C)
Rating :

 
iOS/iPhone Image View and NSURLConnection ActivityIndicator Progress
Rating :

 
iOS/iPhone NSURLConnection POST Method and Send Parameter (Objective-C)
Rating :

 
iOS/iPhone NSMutableURLRequest Example (Objective-C)
Rating :

 
iOS/iPhone NSURLConnection and PHP MySQL / JSON (TableView,UITableView)
Rating :

 
iOS/iPhone NSURLConnection Show Progress and Activity Indicator View (UIActivityIndicatorView)
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 02
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่