加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

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

发布时间:2020-12-14 17:36:59 所属栏目:百科 来源:网络整理
导读:上周我已经下载了 Xcode 4.2,所以当我开始构建应用程序时,我试图将UITableView添加到我的一个项目中(正如我从开始开发以来一直在做的那样),但是UITableView无法正常工作.我正在寻找教程,但我没有找到任何: ????如何在XOS 4.2上为IOS 5创建UITableView? obs
上周我已经下载了 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
}

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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读