OGeek|极客世界-中国程序员成长平台

标题: iphone - 使用 Utility 模板的 Flipview 内的 Tableview [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 17:24
标题: iphone - 使用 Utility 模板的 Flipview 内的 Tableview

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

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

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

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

我使用的是 Xcode 4.2。

任何帮助将不胜感激。在此先感谢



Best Answer-推荐答案


首先,您需要将 UITableView 拖放到界面构建器中的 flipsideViewController 上。确保您喜欢 View Controller 的委托(delegate)和数据源。

enter image description here

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

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

flipsideViewController.m alloc/init 中并在 viewDidLoad

中填充您的数组
myArrayOfItems = [[NSArray alloc] initWithObjects"firstItem",@"secondItem",@"thirdItem",@"fourthItem", nil];

最后,复制并粘贴以下内容,您应该有一个工作表!

- (NSInteger)numberOfSectionsInTableViewUITableView *)tableView
{
    return 1;
}

- (NSInteger)tableViewUITableView *)tableView numberOfRowsInSectionNSInteger)section
{
    return [myArrayOfItems count];
}

- (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)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)tableViewUITableView *)tableView didSelectRowAtIndexPathNSIndexPath *)indexPath
{
    NSLog(@"Selected cell index:%i",indexPath.row);
}

关于iphone - 使用 Utility 模板的 Flipview 内的 Tableview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13076495/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (https://ogeek.cn/) Powered by Discuz! X3.4