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 NSURLConnection (Objective-C)

iOS/iPhone NSURLConnection (Objective-C) สำหรับ NSURLConnection เป็น Class ของ Objective-C ที่ใช้ในการเขียน iOS ใช้สำหรับการอ่านค่า Request ผ่าน URL (Website) และจะได้ค่า Resource ที่ Server กลับมา ใน Objective-C จะมี Class หลายตัวที่สามารถทำงานได้ลักษณะเดียวกันกับ NSURLConnection แต่เหตุผลที่เราเลือกใช้ NSURLConnection ก็คือในระหว่างที่ NSURLConnection กำลังทำงานนั้น เราสามารถที่จะ delegate method เพื่อควบคุมและตรวจสอบสถานะการทำงานของแต่ล่ะขั้นตอนได้ เช่น ตรวจสอบสถานะการทำงาน สถานะกำลังทำงาน หรือ การทำงานที่ผิดพลาด หรือ การำทงานเสร็จสิ้นแล้ว

iOS/iPhone NSURLConnection (Objective-C)

iOS/iPhone NSURLConnection (Objective-C)


ตามที่ได้เกรินไว้ก่อนหน้านี้ในการเรียกใช้ NSURLConnection สามารถที่จะกำหนดและสร้าง delegate method เพื่อตรวจสอบการทำงานของ NSURLConnection ในแต่ล่ะขั้นตอน โดยหลัก ๆ แล้วมีจะมีรูปแบบการสร้างและ delegate ดังนี้

NSURLConnection Syntax
    NSURLRequest *theRequest =
    [NSURLRequest requestWithURL:[NSURL URLWithString:@"https://www.thaicreate.com/url/string.php"]
                     cachePolicy:NSURLRequestReloadIgnoringLocalCacheData
                 timeoutInterval:10.0];

    NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self];

NSURLConnection delegate method
// เมื่อเริ่มทำงาน
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
    receivedData = [[NSMutableData alloc] init];
}

// เมื่อเริ่มรับค่าที่ Server ทำการ Response กลับมา
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
    [receivedData appendData:data];
}

// เมื่อการทำงานผิดพลาด
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{	
    NSLog(@"Connection failed! Error - %@", [error localizedDescription]);   
}

// เมื่อการทำงานเสร็จสิ้น
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
    if(receivedData)
    {
    //
    }
}

จาก delegate method ข้างต้น เราสามารถแทรกคำสั่งของในแต่ล่ะส่วนต่าง ๆ เพื่อตรวจสอบการทำงานของ NSURLConnection

Example การใช้งาน NSURLConnection เพื่ออ่านค่าจาก URL แบบง่าย ๆ

string.php
<?php
echo "This string from server!";
?>

ตัวอย่าง php ง่าย ๆ ที่อยู่บน Web Server








iOS/iPhone NSURLConnection (Objective-C)

เมื่อทดสอบเรียกผ่าน URL

iOS/iPhone NSURLConnection (Objective-C)

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

iOS/iPhone NSURLConnection (Objective-C)

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

iOS/iPhone NSURLConnection (Objective-C)

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

iOS/iPhone NSURLConnection (Objective-C)

สร้าง Label และให้เชื่อม IBOutlet ดังรูป จากนั้นเขียน Code ต่าง ๆ ดังนี้

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

#import <UIKit/UIKit.h>

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

@property(nonatomic,assign) NSMutableData *receivedData;

@end


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

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

@synthesize receivedData;


- (void)viewDidLoad
{
    [super viewDidLoad];
	// Do any additional setup after loading the view, typically from a nib.
    
    NSURLRequest *theRequest =
    [NSURLRequest requestWithURL:[NSURL URLWithString:@"https://www.thaicreate.com/url/string.php"]
                     cachePolicy:NSURLRequestReloadIgnoringLocalCacheData
                 timeoutInterval:10.0];

    NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
    
    if (theConnection) {
        self.receivedData = nil;
    } else {
		UIAlertView *connectFailMessage = [[UIAlertView alloc] initWithTitle:@"NSURLConnection " message:@"Failed in viewDidLoad"  delegate: self cancelButtonTitle:@"Ok" otherButtonTitles: nil];
		[connectFailMessage show];
		[connectFailMessage release];
    }
    
}

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
    receivedData = [[NSMutableData alloc] init];
}

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
    [receivedData appendData:data];
}

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
    
    [connection release];
    [receivedData release];
    
    // inform the user
    UIAlertView *didFailWithErrorMessage = [[UIAlertView alloc] initWithTitle: @"NSURLConnection " message: @"didFailWithError"  delegate: self cancelButtonTitle: @"Ok" otherButtonTitles: nil];
    [didFailWithErrorMessage show];
    [didFailWithErrorMessage release];
	
    //inform the user
    NSLog(@"Connection failed! Error - %@", [error localizedDescription]);
    
}

- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
    if(receivedData)
    {
        NSLog(@"%@",receivedData);
        NSString *dataString = [[NSString alloc] initWithData:receivedData encoding:NSASCIIStringEncoding];
        
        [lblString setText:dataString];
        
        NSLog(@"%@",dataString);
    }
    
                                                 
    // release the connection, and the data object
    [connection release];
    [receivedData release];
}
                                        
                                                 
- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (void)dealloc {
    [lblString release];
    [super dealloc];
}
@end









Screenshot

iOS/iPhone NSURLConnection (Objective-C)

แสดง Content ที่อยู่บน URL

iOS/iPhone NSURLConnection (Objective-C)

ในกรณีที่เชื่อมต่อ URL ไม่ได้ ก็จะแสดงข้อผิดพลาด

   
Share


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


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


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2012-12-13 09:20:55 / 2017-03-26 08:59:34
  Download : Download  iOS/iPhone NSURLConnection (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 Image View and NSURLConnection ActivityIndicator Progress
Rating :

 
iOS/iPhone NSURLRequest Example (Objective-C)
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 05
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 อัตราราคา คลิกที่นี่