发布网友 发布时间:2022-12-08 10:49
共1个回答
热心网友 时间:2023-06-16 12:11
灞曞紑鍏ㄩ儴- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { ... UITableViewCell *cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier]; if (cell == nil) { // create cell here... } // Adjust cell frame width to be equal to tableview frame width cell.frame = CGRectMake(0, 0, tableView.frame.size.width, cell.frame.size.height); ...}