标签:
项目中用到的一些tabview 问题及对应方法:
一.cell
1.自定义cell获取选中的cell
NSIndexPath *indexPath = [tabView indexPathForSelectedRow];
UITableViewCell *cell = [tabView cellForRowAtIndexPath:indexPath]; cell.myLable.text= @"abc";
2.
标签:
原文地址:http://www.cnblogs.com/wusang/p/5619518.html