怎么实现 tableview 的自定义单选按钮
1个回答
展开全部
楼主可以在方法中做tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath [mw_shl_code=c,true]- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:@"MyIdentifier"]; if (cell == nil) { cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"MyIdentifier"] autorelease]; } NSDictionary *itemAtIndex = (NSDictionary *)[menuList objectAtIndex:indexPath.row]; cell.text = [itemAtIndex objectForKey:@"option"]; return cell;}[/mw_shl_code]
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询