首先,在iPhone App中的表視圖是什么?
?
表視圖(Table View) 是IOS Apps 中一個通用的UI元素。很多應(yīng)用程序在一定程度上,都有使用表視圖來顯示數(shù)據(jù)列表。最好的例子是內(nèi)置的iPhone應(yīng)用程序。你的聯(lián)系人顯示在表視圖中。另外一個例子是Mail應(yīng)用程序,它使用表視圖顯示你的郵箱和郵件。不僅可以用來顯示文本數(shù)據(jù),表視圖也可以呈現(xiàn)圖像數(shù)據(jù)。內(nèi)置的Video和YouT ube應(yīng)用程序是這一用法的例子
?
1.創(chuàng)建simpleTable 項目
?
啟動Xcode, 創(chuàng)建一個Single View application 的新項目
?
輸入Xcode項目所有必須的選項:
Product Name: SimpleTable
?
Company Identifier: com.appcode
?
Class Prefix: SimpleTable
?
Device Family: iPhone
?
Use Storyboards:[不選擇]
?
Use Automatic Reference Counting:[選擇]
?
Include Unit Test:[不選擇]
?
?
2.設(shè)計視圖
?
首先,我們將創(chuàng)建用戶界面,并添加表視圖。選擇SimpleTableViewController.xib文件,切換到Interface Builder界面。
?
在對象庫(Object Library)中,選擇Table View對象,并拖拽到視圖中。
?
?
3.第一次運行你的應(yīng)用程序
在繼續(xù)之前,嘗試使用模擬器運行你的應(yīng)用程序。點擊Run按鍵構(gòu)建你的App并進(jìn)行測試。
?
模擬器屏幕如下圖所示:
?
?
我們已經(jīng)設(shè)計好了表視圖,但是,現(xiàn)在它沒有包含任何數(shù)據(jù)。接著,我們將編寫代碼,添加表數(shù)據(jù)。
?
4.添加表數(shù)據(jù)
?
返回項目導(dǎo)航欄,選擇SimpleTableViewController.h 文件。 在UIViewController 之后,添加<UITableViewDelegate,UITableViewDataSource>。完成后代碼如下所示:
?
?
#import <UIKit/UIKit.h>
?
@interface SimpleTableViewController : UIViewController < UITableViewDelegate , UITableViewDataSource >
?
@end
?
?
在Object-C中,UITableViewDelegate和UITableViewDataSource稱為協(xié)議。基本上,為了在表視圖中顯示數(shù)據(jù),我們必須遵守定義在協(xié)議中的要求,并實現(xiàn)所有要求的方法。
?
UITableViewDelegate 和 UITableViewDataSource
?
UITableView 是表視圖幕后的實際類,用來靈活處理不同的數(shù)據(jù)類型。你可以顯示國家列表或者聯(lián)系人姓名。或者像本示例一樣,我們將使用表視圖程序菜譜列表。因此,你可以告訴UITableView需求顯示的數(shù)據(jù)列表呢?
?
UITableViewDataSource 是答案,它用來連接你的數(shù)據(jù)和表視圖。
?
UITableViewDataSource 協(xié)議定義了2個要求實現(xiàn)的的方法
?
(tableView:cellForRowAtIndexPath 和 tableView:numberOfRowsInSection)。通過實現(xiàn)這些方法,你告訴表視圖顯示多少行數(shù)據(jù)和每一行數(shù)據(jù)。
?
UITableViewDelegate 負(fù)責(zé)處理UITableView的表現(xiàn)。協(xié)議中可選方法讓你管理表行的高度,配置節(jié)點頭部和底部,對表單元重新排序等等。
?
接著,選擇SimpleTableViewController.m 文件,定義一個實例變量,存放數(shù)據(jù)。
?
@implementation SimpleTableViewController
{
NSArray * tableData;
}
?
在viewDidLoad方法中(Called after the controller's view is loaded into memory - 在控制器的視圖裝載到內(nèi)存中完成之后,調(diào)用該方法),添加如下代碼實例化 tableData 數(shù)組。我們初始化數(shù)組位菜譜離列表:
?
- ( void )viewDidLoad
{
? ? [ super viewDidLoad ];
? ? //Initialize table data
? ? tableData = [ NSArray arrayWithObjects : @"Egg Benedict" , @"Mushroom Risotto" , @"Full Breakfast" , @"Hamburger" , @"Ham and Egg sandwith" , @"Creme Brelee" , @"White Chcolate Dount" , @"Starbucks Coffee" , @"Vegetable Curry" , @"Instant Noodle with Egg" , @"Noodle with BBQ Pork" , @"Japanese Noodle with Pork" , @"Green Tea" , @"Thai Shrimp Cake" , @"Angry Birds Cake" , @"Ham and Cheese Panini" , nil ];
}
?
在Object-C中,NSArray 是創(chuàng)建和管理數(shù)組的類,你可以使用NSArray創(chuàng)建靜態(tài)數(shù)組,其容量是固定的。如果你需要創(chuàng)建動態(tài)數(shù)組,則使用NSMutableArray代替。
?
NSArray提供了一組工廠方式來創(chuàng)建數(shù)組對象。在我們的代碼中,我們使用arrayWithObjects來實例化一個NSArray對象,并預(yù)先填充特定的元素(如Hamburger)。
?
最后,我們需要添加2個數(shù)據(jù)源方法:tableView:numberOfRowInSection 和 tableView:cellForRowAtIndexPath。這兩個方法是UITableViewDataSource協(xié)議的一部分。在配置UITableView時,需要強制實現(xiàn)這兩個方法。
?
第一個方法用來通知表視圖選擇了多少條數(shù)據(jù)行,因此添加如下代碼。count方法簡單返回tableData數(shù)組中元素個數(shù)。
?
- ( NSInteger )tableView:( UITableView *)tableView numberOfRowsInSection:( NSInteger )section
{
? ? return [ tableData count ];
}
?
接著,我們實現(xiàn)另外一個需要實現(xiàn)的方法:
?
- ( UITableViewCell *)tableView:( UITableView *)tableView cellForRowAtIndexPath:( NSIndexPath *)indexPath
{
? ? static NSString *simpleTableIdentifier = @"simpleTableItem" ;
? ? UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier :simpleTableIdentifier];
?
? ? if (cell == nil ) {
? ? ? ? cell = [[ UITableViewCell alloc ] initWithStyle : UITableViewCellStyleDefault reuseIdentifier :simpleTableIdentifier];
? ? }
?
cell. textLabel . text = [ tableData objectAtIndex :indexPath. row ];
return cell;
}
更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號聯(lián)系: 360901061
您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對您有幫助就好】元
