<head>
<meta http-equiv="Content-Type" content="text/html charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<style type="text/css">
*{margin:0padding:0}
</style>
<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center" valign="middle">
<table width="80%" height="80%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td>&nbsp</td>
<td>&nbsp</td>
<td>&nbsp</td>
<td>&nbsp</td>
</tr>
<tr>
<td>&nbsp</td>
<td>&nbsp</td>
<td>&nbsp</td>
<td>&nbsp</td>
</tr>
<tr>
<td>&nbsp</td>
<td>&nbsp</td>
<td>&nbsp</td>
<td>&nbsp</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
就是你打算让他有几行就返回多少,假设你要返回10行,就return 10
返回的行数就是你打算让这个表显示出几行的内容~
首先要 viewcontroller<UITabaleViewDatasource,UITableViewDelegate>,
然后
table.datasource = self
table.delegate = self
在
#pragma mark - UITableViewDataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 10//默认只有一个section,需要10行
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//indexPath包含 section,row两个信息
UITableViewCell *cell..//设置cell的属性
return cell//返回每一行的cell
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)