สำหรับแอพพลิเคชันที่ต้องการแสดงผลข้อมูลในเครื่องผ่าน UITableView นั้นมีหลายวิธี Plist หรือ Property List เป็นอีกทางเลือกที่ดีครับ
รูปแบบของ Property List นั้น ทำงานเหมือน Database อย่าง SQLite หรือ JSON WebService ครับ เพียงแค่มันมีการจัดการได้เองง่ายๆ ผ่าน XCode ของเราใน Bundle Project เลยครับ โครงสร้างของมันนั้นเหมือนการจัดการข้อมูลแบบ XML นั่นเอง
เป็นการแสดงผลข้อมูลในรูปแบบ Array วิธีหนึ่งผ่าน XML ครับ
วิธีการเขียนโปรแกรมเบื้องต้น
ให้ New Project ขึ้นมาใหม่ครับ เป็น Single View Application หลังจากนั้นก็ รอจนพร้อมใช้งาน
คลิกขวาที่ Project Tree ของเรา เลือก New File ครับ ต่อจากนั้นหา Property List แล้วทำการ Add เข้า Project ของเราครับ ตั้งชื่อว่า data.plist ต่อมาให้ทำการเพิ่มข้อมูลของ Plist ของเราครับ
คลิกที่ data.plist ครับ คลิกขวา add row เข้าไป เพิ่มข้อมูลตามนี้ ครับ
Thumbnail จะเป็นการไปเรียกไฟล์ png หรือ jpg จาก Bundle Project ของเราครับ หากลอง คลิกขวาที่ไฟล์ data.plist แล้วเปิดดูแบบ Source code จะเห็นโครงสร้าง XML ของมันทันทีครับ
โครงสร้าง เป็นดังนี้ครับ
ต่อมาเขียนโปรแกรมเรียกข้อมูลมาโชว์บน UITableView กันครับ
ลาก UITableView มาวางบน MainStoryBoard ครับ ทำการ DataSource และ Delegate ให้เรียบร้อยครับ ลิงค์ UITableView กับ ViewController.h ใหม่ IBOutlet ว่า tableData
เปิด ViewController.h ขึ้นมาครับ สร้าง IBOutlet ดังนี้
@property (weak, nonatomic) IBOutlet UITableView *tableData;
อย่าลืมประกาศ <UITableViewDelegate>ด้วยนะครับ
@interface ViewController : UIViewController<UITableViewDelegate>
หากเสร็จแล้วตรวจสอบความเรียบร้อยว่า ViewController.h เป็นดังนี้หรือเปล่า
#import <UIKit/UIKit.h> @interface ViewController : UIViewController<UITableViewDelegate> @property (weak, nonatomic) IBOutlet UITableView *tableData; @property (strong, nonatomic) NSArray *title_data; @property (strong, nonatomic) NSArray *detail_data; @property (strong, nonatomic) NSArray *thumbnail_data; @end
เปิดไฟล์ ViewController.m ขึ้นมาทำการ @synthesize ตัวแปลครับ
@implementation ViewController @synthesize title_data; @synthesize thumbnail_data; @synthesize detail_data; @synthesize tableData = _tableData;
ใน เมธอด ViewDidLoad() ครับให้ทำการสร้างตัวแปรขึ้นมารับ data จาก Plist ดังนี้
- (void)viewDidLoad { [super viewDidLoad]; NSString *path = [[NSBundle mainBundle] pathForResource:@"data" ofType:@"plist"]; // Load the file content and read the data into arrays NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:path]; NSLog(@"title:%@",[dict objectForKey:@"title"]); NSLog(@"thumbnail:%@",[dict objectForKey:@"thumbnail"]); NSLog(@"excerpt:%@",[dict objectForKey:@"excerpt"]); NSLog(@"id:%@",[dict objectForKey:@"id"]); title_data = [dict objectForKey:@"title"]; thumbnail_data = [dict objectForKey:@"thumbnail"]; detail_data = [dict objectForKey:@"detail"]; // Do any additional setup after loading the view, typically from a nib. }
สร้าง path สำหรับบอกตำแหน่งของไฟล์ data.plist ใน Bundle ของเรา
NSString *path = [[NSBundle mainBundle] pathForResource:@"data" ofType:@"plist"];
สร้าง dictionary ขึ้นมาเก็บข้อมูลของ Data ของเราจาก path ที่กำหนด
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:path];
ลอง NSLog ดูค่าตัวแปรที่เข้ามาก่อนเล็กน้อยครับ ลอง Run ดู
NSLog(@"title:%@",[dict objectForKey:@"title"]); NSLog(@"thumbnail:%@",[dict objectForKey:@"thumbnail"]); NSLog(@"excerpt:%@",[dict objectForKey:@"excerpt"]); NSLog(@"id:%@",[dict objectForKey:@"id"]); title_data = [dict objectForKey:@"title"]; thumbnail_data = [dict objectForKey:@"thumbnail"]; detail_data = [dict objectForKey:@"detail"];
โอเค มีค่าเข้ามาในตัวแปร dict ของเราแล้ว
ต่อมาทำการสร้าง Code ของ UITable View มาเรียกข้อมูล ก็คือคำสั่ง Code ปรกติของ UITableView เรียก Array นั่นแหละครับ แต่เปลี่ยนค่าที่แสดงเป็น
[title_data objectAtIndex:indexPath.row]; //ค่า title
แทนเท่านั้นเองครับ เขียน Code ตามนี้
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { // Return the number of rows in the section. return [title_data count]; } -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *simpleTableIdentifier =@"Cell"; UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier]; if(cell == nil){ cell =[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier]; } cell.textLabel.text = [title_data objectAtIndex:indexPath.row]; cell.textLabel.numberOfLines = 2; cell.detailTextLabel.text =[detail_data objectAtIndex:indexPath.row]; cell.detailTextLabel.numberOfLines= 2; cell.imageView.image =[UIImage imageNamed:[thumbnail_data objectAtIndex:indexPath.row]]; return cell; }
ลอง Run ตัว Project ของคุณอีกครั้ง ก็เป็นอันเรียบร้อยครับ ใช้งานได้ปรกติ
การใช้ Plist เป็นการเก็บข้อมูลอย่างง่ายที่เหมาะกับแอพพลิเคชันที่ Stand Alone ครับ (หรือจะประยุกต์ Advance ให้เก็บ Web Service) ก็ได้หวังว่าบทเรียนนี้คงไม่ยากเกินไปนะครับ ลองเอาไปศึกษาดูกันครับ
Source Code: http://adf.ly/hOWGg
ฝากผลงานหนังสือของ เว็บไซต์นี้ทีนะครับ สำหรับคนที่ต้องการพัฒนาแอพพลิเคชันบน iOS7.1
[fb_embed_post href=”https://www.facebook.com/photo.php?fbid=777971808913916&set=a.390784317632669.96833.323517721025996&type=1/” width=”550″/]