在iPhone SDK中,有没有办法在具有UITableViewStyleGrouped样式的tableview中自定义单元格的宽度?
问题是我正在为cell.backgroundView使用自定义背景图像(宽度为290像素),但显然会被拉伸。我希望能够设置此单元格的自定义宽度,以便背景图像不会拉伸。
答案 0 :(得分:-1)
根据您的要求调整tableView的大小..........从Nib或以编程方式.....
单元格的大小取决于表格的宽度。
因为IPhoneSDK中没有这样的方法
-(CGFloat)tableView:(UITableView *)tableView widthForRowAtIndexPath:(NSIndexPath *)indexPath
{
// width
return 300;
}
答案 1 :(得分:-2)
你能不能调用委托方法
-(CGFloat)tableView:(UITableView *)tableView widthForRowAtIndexPath:(NSIndexPath *)indexPath
{
// width
return 300;
}