2

我是 iOS 开发的新手,所以对于提出可能愚蠢的问题,我深表歉意。

我想做的是与默认天气应用程序非常相似的东西;如果应用程序有一个信息按钮,它会翻转到另一个视图,该视图有一个表格和一个完成按钮以返回应用程序。

我正在使用“实用程序”模板,它为我完成了大部分工作:)

但是,我现在正在努力将表格视图添加到翻转视图中。我在正确的道路上吗?我目前正在使用情节提要 - 开始意识到这很可能是对 GUI 的限制(毕竟 GUI 只能走这么远)。如果是这样,这是否可能以编程方式进行,我将如何将其应用于默认的“实用程序应用程序”模板。

我正在使用 Xcode 4.2。

任何帮助,将不胜感激。提前致谢 :)

4

1 回答 1

3

首先,您需要将 UITableView 拖放到您flipsideViewController的界面构建器中。确保您喜欢视图控制器的委托和数据源。

在此处输入图像描述

然后更改flipsideViewController.h为数组创建一个实例变量,该变量将存储单元格标签的文本,并使控制器符合表委托和数据源方法。

@interface FlipsideViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>
{
    NSArray *myArrayOfItems;
}

flipsideViewController.malloc/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);
}
于 2012-10-25T20:31:14.263 回答