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 Get the String contents from URL (Website)

iOS/iPhone Get the String contents from URL (Website) บทความนี้จะเป็นการเริ่มต้นเกี่ยวกับการเขียน iOS App เพื่อเชื่อมต่อกับ Web Server ผ่าน Internet ด้วยการอ่านข้อความที่อยู่ในเว็บไซต์ อ่าน URL ของเว็บ (Website) ซึ่งเป็นข้อความแบบง่าย ๆ ที่จะเป็นจุดเริ่มต้นและทำความเข้าใจ Web Server and Clent ในการที่จะพัฒนาโปรแกรมอื่น ๆ

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

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


ในการเรียกข้อความทีอยู่ใน Web Server ผ่าน URL ในระบบ Internet หรือ Intranet สามารถใช้ได้หลากหลายรูปบบคำสั่ง เช่น stringWithContentsOfURL , dataWithContentsOfURL , NSURLRequest หรือผ่านกลุ่มคำสั่งของ NSURLConnection ซึ่งในบทความของ iOS ผมจะพยายามยกตัวอย่างของแต่ล่ะรูปแบบไว้ให้เป็นตัวอย่างกันครับ

Example 1
    NSString *myUrl = @"https://www.thaicreate.com/url/string.php";
    NSString *returnData = [NSString stringWithContentsOfURL:[NSURL URLWithString: myUrl]];
    lblContent.text = theString;

Example 2
    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;

จากตัวอย่างสามารถใช้คำสั่งที่สั้น ๆ เพื่อดึงข้อมูลที่อยู่บน Web Server ผ่าน URL (Website) ได้ในทันที ลองมาดูตัวอย่างการเขียนจริง

https://www.thaicreate.com/url/string.php


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

ตัวอย่างการเรียก URL ผ่าน Web Browser ซึ่งตอนนี้มีข้อความว่า This string from URL อยู่บนเว็บไซต์

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

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

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

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

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

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








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

สร้าง Label และ Button ดังรูป

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

ใน Class ของ .h ให้ทำการเชื่อม IBOutlet และ IBAction

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

ใน Class ของ .m มี method ของ Event เกิดขึ้น ตอนนี้ยังไม่มีคำสั่งอะไร โดยเราจะเขียน Code ทั้งหมดดังนี้

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

#import <UIKit/UIKit.h>

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

- (IBAction)btnGet:(id)sender;

@end


ViewController.m
//
//  ViewController.m
//  stringFromURL
//
//  Created by Weerachai on 12/2/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.
}

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

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

- (IBAction)btnGet:(id)sender {
    
    
    /*for iOS 5
    NSString *myUrl = @"https://www.thaicreate.com/url/string.php";
    NSString *returnData = [NSString stringWithContentsOfURL:[NSURL URLWithString: myUrl]];
     */

    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;
}

@end


Screenshot

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

หน้าจอ App หน้าแรก

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

คลิกที่ Button ของ Get Content ซึ่งจะแสดงข้อความที่อยู่บน URL ของ Web Site








เพิ่มเติม
หลังจากที่เราได้อ่านบทความนี้ เราจะเห็นว่าการเชื่อมต่อ iOS กับ Website ผ่าน URL ในการที่จะอ่านค่าต่าง ๆ บน Web Server นั้น เป็นเรื่องที่ง่ายมาก และเราจะเกิด idea ที่จะเขียน Application ต่าง ๆ อีกมากมายตามมา ซึ่งตัวนี้เป็นเพียงรูปแบบง่าย ๆ ในบทความถัด ๆ ไป ผมจะได้ยกตัวอย่างเกี่ยวกับการส่งผ่านจาก iOS กับ Web Server ในรูปแบบต่าง ๆ ผ่าน POST หรือ GET และอาจจะใช้ JSON เข้ามาจัดการสำหรับการแลกเปลี่ยนข้อมูลเป็นต้น

iOS/iPhone and JSON (Create and JSON Parsing)


   
Share


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


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


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2012-12-03 09:29:02 / 2017-03-26 09:08:04
  Download : Download  iOS/iPhone Get the String contents from URL (Website)
 Sponsored Links / Related

 
iOS/iPhone Web View (UIWebView) Open Web Site and HTML (Objective-C, iPhone, iPad)
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 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 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 อัตราราคา คลิกที่นี่