如何在XOS 4.2上为IOS 5创建UITableView?

时间:2011-10-26 23:38:22

标签: iphone c++ xcode uitableview ios5

上周我已经下载了Xcode 4.2,所以当我开始构建应用程序时,我试图在我的一个项目中添加UITableView(正如我自开始开发以来一直在做的那样),但是{ {1}}无效。我正在寻找教程,但我没有找到任何:     如何在Xcode 4.2上为IOS 5创建UITableView?

obs:我没有使用storyBoard只是XIB的!

2 个答案:

答案 0 :(得分:4)

在.h文件中

,添加以下内容:

@interface YourClass: UIViewController <**UITableViewDataSource, UITableViewDelegate**>

右键单击(或按住Ctrl键单击)并从tableView拖动到文件所有者两次。选择&#34;委托&#34;,然后选择&#34; dataSource&#34;。

然后,在.m文件中,您需要实现以下内容:

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

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{return someNumber;}

- (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] setText:yourText];

    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    //do what you want to with the information at indexPath.row
}

这应该可以让你找到一个工作表。

答案 1 :(得分:0)

您应该从项目模板“Master-Detail Application”开始,并查看使用C ++创建自己的代码的机制。

但核心是,创建UITableView只需两步:

  • 初始化视图
  • 将其插入其委托/数据源

另外,这可能会对您有所帮助:Can i write Cocoa Touch[iPhone] applications in C++ language