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 Table View Controller and Storyboard - UITableViewController (Objective-C)

iOS/iPhone Table View Controller and Storyboard - UITableViewController บทความนี้จะเป็นการสอนเขียน iOS บน iPhone และการใช้ Table View Controller (UITableViewController) นำข้อมูลที่อยู่ในรูปแบบของ Array มาแสดงบน Table ข้อดีของการใช้ Table View Controller ก็คือ ใน Class นี้จะมีการสร้าง Method ขึ้นมาให้อัตโนมัติ เราเพียงเพิ่ม Code บางตัวเท่านั้น ก็สามารถที่จะแสดงผลข้อมูลบน Table ได้ทันที โดยในตัวอย่างนี้จะใช้การสร้าง Table View Controller บน Storyboard และการสร้าง Class ใหม่ รวมทั้งการกำหนด Custom Class ให้กับ Table View Controller

iOS/iPhone Table View and Storyboard

iOS/iPhone Table View and Storyboard - UITableViewController


บทความนี้จะบทความต่อการการใช้ TableView และ Storyboard ทั้งนี้เพื่อความเข้าใจและไม่สับสนใจการสร้าง Table View บน Storyboard แนะนำให้อ่าน 2 บทความนี้ก่อน



ทดสอบบน Xcode ทำงานบน iPhone

iOS/iPhone Table View and Storyboard

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

iOS/iPhone Table View and Storyboard

เลือกเป็นแบบ Use Storyboard..

iOS/iPhone Table View and Storyboard

โครงสร้างไลฟ์ที่ได้

iOS/iPhone Table View and Storyboard

ให้ลบ ViewController.h และ ViewController.h ทิ้งไป (ไฟล์นี้ไม่จำเป็นต้องใช้แล้ว จะเก็บไว้ก็ไม่เสียหาย)








iOS/iPhone Table View and Storyboard

ลบเรียบร้อย

iOS/iPhone Table View and Storyboard

กลับมาที่ Storyboard ซึ่งตอนนี้จะมี View ที่เป็นค่า Default อยู่ 1 ตัว ให้ทำการลบ View ใน Storyboard ออกจากหน้าจอ

iOS/iPhone Table View and Storyboard

ตอนนี้บน Storyboard จะเป็นเพียงแค่หน้าจอว่าง ๆ ยังไม่มี View หรือ Object ใด ๆ ทั้งสิ้น

iOS/iPhone Table View and Storyboard

กลับมาที่ Interface Builder ให้ลาก Table View Controller ไปไว้ใน Storyboard

iOS/iPhone Table View and Storyboard

ต่อไปเราจะสร้าง Custom Class ให้กับ View ที่สร้างขึ้นมาใหม่ ให้คลิกที่ Project เลือก New File...

iOS/iPhone Table View and Storyboard

คลิกที่ Objective-C Class

iOS/iPhone Table View and Storyboard

เลือก Subclass เป็น UITableViewController

iOS/iPhone Table View and Storyboard

เลือก Path ที่จัดเก็บ

iOS/iPhone Table View and Storyboard

ได้ไฟล์ขึ้นมาเรียบร้อย

iOS/iPhone Table View and Storyboard

เมื่อคลิกเข้าไปที่ไฟล์ .m จะเห็นว่ามี method ต่าง ๆ ได้ถูกสร้างไว้อย่างอัตโนมัติ ซึ่งเรายังไม่ต้องทำอะไรเพิ่ม

iOS/iPhone Table View and Storyboard

ขั้นตอนนี้จะเป็นการเชื่อม Table View Controller กับ Class ที่สร้างขึ้นมาใหม่ โดยให้คลิกที่ View Controller (Icons สีเหลือง) จากนั้นเลือก Class ที่ได้สร้างมาเมื่อกี่ เพียงเท่านี้ก็เป็นอันเสร็จสิ้นขั้นตอนการสร้าง Table View Controller และขั้นตอนต่อไปคือการสร้างข้อมูลที่จะแสดงบน Table View ซึ่งจะต้องเขียนด้วยภาษา Objective-C








myViewController.h
//
//  myViewController.h
//
//  Created by Weerachai on 10/27/55 BE.
//  Copyright (c) 2555 Weerachai. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface myViewController : UITableViewController

@end



myViewController.m
//
//  myViewController.m
//
//  Created by Weerachai on 10/27/55 BE.
//  Copyright (c) 2555 Weerachai. All rights reserved.
//

#import "myViewController.h"

@interface myViewController ()
{
    NSMutableArray *myObject;
}

@end

@implementation myViewController

- (id)initWithStyle:(UITableViewStyle)style
{
    self = [super initWithStyle:style];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];

    myObject = [[NSMutableArray alloc] init];
    
    [myObject addObject:@"ThaiCreate.Com 1"];
    [myObject addObject:@"ThaiCreate.Com 2"];
    [myObject addObject:@"ThaiCreate.Com 3"];
    [myObject addObject:@"ThaiCreate.Com 4"];
}

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


- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
        return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

    // Return the number of rows in the 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];
    }
    
    
    NSString *cellValue = [myObject objectAtIndex:indexPath.row];
    cell.textLabel.text = cellValue;
    
    return cell;
}


- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *cellValue = [myObject objectAtIndex:indexPath.row];
    UIAlertView *alert =[[UIAlertView alloc]
                                  initWithTitle:@"คุณเลือกรายการ"
                                  message:cellValue
                                  delegate:self
                                  cancelButtonTitle:@"ปิด"
                                  otherButtonTitles: nil];
    [alert show];
}

@end


ส่วนคำสั่งนั้นไม่ขออธิบาย เพราะสามารถอ่านแล้ว น่าจะเข้าใจได้โดยไม่ยาก หรือไม่ก็อ่านได้จากบทความที่ได้แนะนำไว้ก่อนหน้านี้



Screenshot

iOS/iPhone Table View and Storyboard

แสดงข้อมูลบน Table View

iOS/iPhone Table View and Storyboard

เมื่อคลิกที่ Item ของ Rows

   
Share


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


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


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2012-10-23 22:09:17 / 2017-03-26 09:44:32
  Download : Download  iOS/iPhone Table View Controller and Storyboard - UITableViewController  (Objective-C)
 Sponsored Links / Related

 
iOS/iPhone Storyboard and View , Multiple View (Objective-C, iPhone, iPad)
Rating :

 
iOS/iPhone Storyboard and Custom Class in View (Objective-C, iPhone, iPad)
Rating :

 
iOS/iPhone Storyboard Action Segue and View (Objective-C,iPhone,iPad)
Rating :

 
iOS/iPhone Storyboard and Passing Data Between View (Objective-C,iPhone)
Rating :

 
iOS/iPhone Storyboard and TableView Master-Detail (Objective-C,iPhone,iPad)
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 00
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 อัตราราคา คลิกที่นี่