今天渣渣想直接创建一个UITableView视图作为根视图来用结果发现有警告,才明白TableView和view是不能直接作为根视图的,需要放在ViewController上.做个笔记详细了解下.
参考博文:http://blog.csdn.net/ryantang03/article/details/7749103(IOS学习笔记8—UITableViewController)里面列举了xib创建方法.
//--------------------------------------分割线---------------------------------
常见用法:
在控制器ViewController上加上UITableView,然后创建UITableViewCell,自定义tableview.
为了更加方便选择直接创建:
AppDelegate中:设置根视图
FirstTableViewController *table = [[FirstTableViewController alloc]init];
self.window.rootViewController = table;
TableViewController中:
.h文件
1.加协议<UITableViewDataSource,UITableViewDelegate>
2.新建UITableViewCell进行自定义布局
注意:return 返回分区数量必须大于0才能显示
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}