iOS   发布时间:2022-05-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了iphone – 我如何在Xcode 4.2上为IOS 5创建一个UITableView?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

上周我已经下载了 Xcode 4.2,所以当我开始构建应用程序时,我试将uITableView添加到我的一个项目中(正如我从开始开发以来一直在做的那样),但是UITableView无法正常工作.我正在寻找教程,但我没有找到任何:     如何在XOS 4.2上为IOS 5创建UITableView? obs:我没有使用storyBoard只是XIB的! 在.h文件中,添加以下内容: @inter
上周我已经下载了 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
}

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

大佬总结

以上是大佬教程为你收集整理的iphone – 我如何在Xcode 4.2上为IOS 5创建一个UITableView?全部内容,希望文章能够帮你解决iphone – 我如何在Xcode 4.2上为IOS 5创建一个UITableView?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。