如何创建类似http://goo.gl/ks2q1的内容(位于“操作”下)?
答案 0 :(得分:0)
我认为这只是正常UITableView
,请查看documentation和UITableView Programming Guide
答案 1 :(得分:0)
这将是一个简单的过程,只需使用表格视图的第二部分,并在单元格中创建一个标签插入并使其居中。在表格方法中使用这行代码。
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
if(indexPath.section==1)
{
putts_Label=[[UILabel alloc]initWithFrame:CGRectMake(150, 8, 24, 24)];
putts_Label.text=@"0";
putts_Label.textColor=[UIColor blackColor];
putts_Label.backgroundColor=[UIColor clearColor];
[cell.contentView addSubview:putts_Label];
}