首先,您需要在界面構建器中將UITableView拖放到flipsideViewController
上。確保你喜歡它的委託和數據源到視圖控制器。
然後改變flipsideViewController.h
創建用於將文本存儲用於細胞標記和用於控制器,以符合表委託和數據源的方法的陣列的一個實例變量。
@interface FlipsideViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>
{
NSArray *myArrayOfItems;
}
在flipsideViewController.m
分配/ init和填充您的陣列中viewDidLoad
myArrayOfItems = [[NSArray alloc] initWithObjects:@"firstItem",@"secondItem",@"thirdItem",@"fourthItem", nil];
最後,複製並粘貼以下,你應該有一個工作表!
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [myArrayOfItems count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.textLabel.text = [myArrayOfItems objectAtIndex:indexPath.row];
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"Selected cell index:%i",indexPath.row);
}
哇,真是徹底的回覆!不夠感謝你!這工作完美 - 看起來很簡單。 :) – user1197220