码迷,mamicode.com
首页 > 其他好文 > 详细

UITableView代理cellForRowAtIndexPath不执行的相关解决方案

时间:2015-06-22 13:45:21      阅读:393      评论:0      收藏:0      [点我收藏+]

标签:uitableview   布局   ios8编程   addconstraints   cellforrowatindexpat   

郝萌主倾心贡献,尊重作者的劳动成果,请勿转载。

如果文章对您有所帮助,欢迎给作者捐赠,支持郝萌主,捐赠数额随意,重在心意^_^ 

我要捐赠: 点击捐赠

Cocos2d-X源码下载:点我传送


1、是否设置代理与数据源

    [table setDelegate:self];

    [table setDataSource:self];


2、numberOfSectionsInTableView是否设置

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {

    return 1;

}


3、numberOfRowsInSection方法返回值是否正确,如果不正确就不会执行 cellForRowAtIndexPath。

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

    return 1;

}


4、检查Table是否被其他View遮挡


5、还有可能是autolayout引起的,autolayout约束不对,也会导致tableview显示不出来,

cellForRowAtIndexPath是在显示到界面的时候才调用,正确的设置autolayout就会执行该方法。 


6、如果纯代码实现,并使用VFL布局参考以下写法

    [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-64-[table]-50-|" options:0 metrics:nil views:constraintsView ]];

    [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-0-[table]-0-|" options:0 metrics:nil views:constraintsView ]];


郝萌主倾心贡献,尊重作者的劳动成果,请勿转载。

如果文章对您有所帮助,欢迎给作者捐赠,支持郝萌主,捐赠数额随意,重在心意^_^ 

我要捐赠: 点击捐赠

Cocos2d-X源码下载:点我传送

UITableView代理cellForRowAtIndexPath不执行的相关解决方案

标签:uitableview   布局   ios8编程   addconstraints   cellforrowatindexpat   

原文地址:http://blog.csdn.net/haomengzhu/article/details/46592773

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!