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 PHP/MySQL and JSON Parsing (Objective-C)

iOS/iPhone PHP/MySQL and JSON Parsing (Objective-C) บทความนี้เป็นการเขียน iOS บน iPhone กับการแสดงข้อมูลจาก PHP และ MySQL Database ที่อยู่บน Web Server โดยการใช้ iOS ในการเรียกข้อมูลจาก URL ที่อยู่บน Web site และจะได้ข้อมูลในรูปแบบของ JSON กลับมา หลังจากได้ข้อมูลในรูปแบบของ JSON แล้ว iOS ซึ่งเขียนด้วยภาษา Objective-C จะทำการแปลงข้อมูลเหล่านั้นให้อยู่ในรูปแบบของ Array ที่จะสามารถนำไปแสดงผลบน Table View (UITableView) ได้

iOS/iPhone PHP/MySQL and JSON Parsing

iOS/iPhone PHP/MySQL and JSON Parsing


สำหรับการเขียน iOS App ด้วย Objective-C การอ่านข้อมูลที่อยู่บน Web Server (PHP & MySQL) นั้นสามารถทำได้ง่าย ๆ ด้วยการใช้ dataWithContentsOfURL ทำการระบุ URL ปลายทางก็จะสามารถรับข้อมูลต่าง ๆ มาจัดเก็บไว้ที่ NSData ได้ในทันที และข้อมูลเหล่านั้นก็จะผ่านการ NSJSONSerialization ซึ่งจะได้ข้อมูลในรูปแบบของ Array ที่จะแสดงผลบน Table View ได้

Web Server โครงสร้าง PHP และ MySQL Database ที่อยู่บน Web Server

MySQL Database
CREATE TABLE `member` (
  `MemberID` int(11) NOT NULL auto_increment,
  `Name` varchar(50) NOT NULL,
  `Tel` varchar(50) NOT NULL,
  PRIMARY KEY  (`MemberID`)
) ENGINE=MyISAM  AUTO_INCREMENT=4 ;

-- 
-- Dumping data for table `member`
-- 

INSERT INTO `member` VALUES (1, 'Weerachai', '0819876107');
INSERT INTO `member` VALUES (2, 'Win', '021978032');
INSERT INTO `member` VALUES (3, 'Eak', '0876543210');

โครงสร้างของ MySQL Database ที่อยู่บน Web Server

iOS/iPhone PHP/MySQL and JSON Parsing

getJSON.php ไฟล์ PHP สำหรับอ่านข้อมูลจาก MySQL และส่งออกเป็น JSON
<?php
	$objConnect = mysql_connect("localhost","root","root");
	$objDB = mysql_select_db("mydatabase");
	$strSQL = "SELECT * FROM member WHERE 1  ";
	$objQuery = mysql_query($strSQL);
	$intNumField = mysql_num_fields($objQuery);
	$resultArray = array();
	while($obResult = mysql_fetch_array($objQuery))
	{
		$arrCol = array();
		for($i=0;$i<$intNumField;$i++)
		{
			$arrCol[mysql_field_name($objQuery,$i)] = $obResult[$i];
		}
		array_push($resultArray,$arrCol);
	}
	
	mysql_close($objConnect);
	
	echo json_encode($resultArray);
?>

ไฟล์ PHP อ่านข้อมูลจาก MySQL Database ให้อยู่ในรูปแบบขแง JSON Code

iOS/iPhone PHP/MySQL and JSON Parsing

ไฟล์ PHP และ JSON ที่ได้เมื่อเรียกผ่าน Web Browser

จาก PHP และ MySQL Database และ JSON ทีได้ เราจะสามารถอ่าน JSON ให้อยู่ในรูปแบบของ NSMutableArray ที่จะใช้สำหรับ Table View ได้ดังนี้

    NSMutableArray *myObject;
    
    // A dictionary object
    NSDictionary *dict;
    
    // Define keys
    NSString *memberid;
    NSString *name;
    NSString *tel;

    // Define keys
    memberid = @"MemberID";
    name = @"Name";
    tel = @"Tel";
    
    // [{ "MemberID":"1", "Name":"Weerachai", "Tel":"0819876107" }, { "MemberID":"2", "Name":"Win", "Tel":"021978032" }, { "MemberID":"3", "Name":"Eak", "Tel":"087654321" }]
    
    // Create array to hold dictionaries
    myObject = [[NSMutableArray alloc] init];
    
    NSData *jsonData = [NSData dataWithContentsOfURL:
                        [NSURL URLWithString:@"https://www.thaicreate.com/url/getJSON.php"]];
    
    id jsonObjects = [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableContainers error:nil];
    
    // values in foreach loop
    for (NSDictionary *dataDict in jsonObjects) {
        NSString *strMemberID = [dataDict objectForKey:@"MemberID"];
        NSString *strName = [dataDict objectForKey:@"Name"];
        NSString *strTel = [dataDict objectForKey:@"Tel"];
        
        dict = [NSDictionary dictionaryWithObjectsAndKeys:
                strMemberID, memberid,
                strName, name,
                strTel, tel,
                nil];
        [myObject addObject:dict];
    }

รูปแบบการอ่าน JSON และการแปลงค่า JSON ให้อยู่ในรูปแบบของ NSMutableArray ที่จะใช้แสดงผลบน Table View ลองมาดูซะตัวอย่าง

iOS/iPhone TableView and UITableView (Objective-C, iPhone, iPad)


Example การอ่าน JSON จาก PHP และ MySQL Database และแสดงผลบน Table View (UITableView)

iOS/iPhone PHP/MySQL and JSON Parsing

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








iOS/iPhone PHP/MySQL and JSON Parsing

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

iOS/iPhone PHP/MySQL and JSON Parsing

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

iOS/iPhone PHP/MySQL and JSON Parsing

ทำการลาก Table View มาไว้ที่หน้าจอของ View

iOS/iPhone PHP/MySQL and JSON Parsing

คลิกขวาที่ Table View ให้ทำการเชื่อม dataSource กับ delegate กับ File's Owner

iOS/iPhone PHP/MySQL and JSON Parsing

ใน Class ของ .h ให้เชื่อม IBOutlet ให้เรียบร้อย และอย่าลืมใส่ <UITableViewDataSource,UITableViewDelegate> ด้วย จากนั้น Code ทั้งหมดเป็นดังนี้

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

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController <UITableViewDataSource,UITableViewDelegate>
{
    IBOutlet UITableView *myTable;
}

@end


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

#import "ViewController.h"

@interface ViewController ()
{
    NSMutableArray *myObject;
    
    // A dictionary object
    NSDictionary *dict;
    
    // Define keys
    NSString *memberid;
    NSString *name;
    NSString *tel;
}


@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
	// Do any additional setup after loading the view, typically from a nib.
    
    // Define keys
    memberid = @"MemberID";
    name = @"Name";
    tel = @"Tel";
    
    // [{ "MemberID":"1", "Name":"Weerachai", "Tel":"0819876107" }, { "MemberID":"2", "Name":"Win", "Tel":"021978032" }, { "MemberID":"3", "Name":"Eak", "Tel":"087654321" }]
    
    // Create array to hold dictionaries
    myObject = [[NSMutableArray alloc] init];
    
    NSData *jsonData = [NSData dataWithContentsOfURL:
                        [NSURL URLWithString:@"https://www.thaicreate.com/url/getJSON.php"]];
    
    id jsonObjects = [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableContainers error:nil];
    
    // values in foreach loop
    for (NSDictionary *dataDict in jsonObjects) {
        NSString *strMemberID = [dataDict objectForKey:@"MemberID"];
        NSString *strName = [dataDict objectForKey:@"Name"];
        NSString *strTel = [dataDict objectForKey:@"Tel"];
        
        dict = [NSDictionary dictionaryWithObjectsAndKeys:
                strMemberID, memberid,
                strName, name,
                strTel, tel,
                nil];
        [myObject addObject:dict];
    }
    
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return myObject.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    
    static NSString *CellIdentifier = @"Cell";
    
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        // Use the default cell style.
        cell = [[[UITableViewCell alloc] initWithStyle : UITableViewCellStyleSubtitle
                                       reuseIdentifier : CellIdentifier] autorelease];
    }
    
    
    NSDictionary *tmpDict = [myObject objectAtIndex:indexPath.row];
    
    // MemberID
    NSMutableString *text;
    text = [NSString stringWithFormat:@"MemberID : %@",[tmpDict objectForKey:memberid]];
    
    // Name & Tel
    NSMutableString *detail;
    detail = [NSString stringWithFormat:@"Name : %@ , Tel : %@"
              ,[tmpDict objectForKey:name]
              ,[tmpDict objectForKey:tel]];
    
    cell.textLabel.text = text;
    cell.detailTextLabel.text= detail;
    
    //[tmpDict objectForKey:memberid]
    //[tmpDict objectForKey:name]
    //[tmpDict objectForKey:tel]
    return cell;
}

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

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









Screenshot

iOS/iPhone PHP/MySQL and JSON Parsing

แสดงข้อมูลจาก JSON จาก PHP และ MySQL Database ที่อยู่บน Web Server ด้วย Object ของ Table View (UITableView)

เพิ่มเติม
จากตัวอย่างนี้เป็นการแสดงข้อมูลบน Table View แบบง่าย ๆ และไม่มีอะไรซับซ้อน และสำหรับคำอธิบายสามารถอ่านได้จากพื้นฐานของบทความ Table View และในกรณีที่ข้อมูลมีความซับซ้อน หรือ การจัดรูปแบบ Cell ตามต้องการ ก็สามารถอ่านได้จากบทความของ Table View Custom Cell ตามลิงค์นี้

iOS/iPhone TableView and UITableView (Objective-C, iPhone, iPad)

iOS/iPhone Table View and Table View Cell - Custom Cell Column (iPhone, iPad)


   
Share


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


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


   


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

 
iOS/iPhone and JSON (Create JSON and JSON Parsing, Objective-C)
Rating :

 
iOS/iPhone Table View and JSON (UITableView from JSON Parser)
Rating :

 
iOS/iPhone Passing JSON (NSJSONSerialization) Between View
Rating :

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

 
iOS/iPhone Search Bar (UISearchBar) Data from Web Server Using JSON
Rating :

 
iOS/iPhone Picker View and JSON (UIPickerView)
Rating :

 
iOS/iPhone Collection View (UICollectionView) and JSON (Web Server URL)
Rating :

 
iOS/iPhone XML Parser / XML Feed from URL (NSXMLParser ,Objective-C)
Rating :

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

 
iOS/iPhone Add Insert Data to Web Server (URL,Website, PHP and MySQL)
Rating :

 
iOS/iPhone Retrieve Read List Show Data from Web Server (URL,Website,PHP,MySQL)
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 อัตราราคา คลิกที่นี่