iphone – 我如何在Xcode 4.2上为IOS 5创建一个UITableView?

前端之家收集整理的这篇文章主要介绍了iphone – 我如何在Xcode 4.2上为IOS 5创建一个UITableView?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
上周我已经下载了 Xcode 4.2,所以当我开始构建应用程序时,我试图将UITableView添加到我的一个项目中(正如我从开始开发以来一直在做的那样),但是UITableView无法正常工作.我正在寻找教程,但我没有找到任何:
    如何在XOS 4.2上为IOS 5创建UITableView?

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

解决方法

在.h文件中,添加以下内容

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

右键单击(或按住Ctrl键单击)并从tableView拖动到文件所有者两次.一次,选择“委托”,然后选择“dataSource”.

然后,在.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
}

这应该会让你找到一个工作表.

猜你在找的Xcode相关文章