我正在處理待辦事項列表應用程序。但是,我似乎無法正確地將我的複選框圖像與cell.textLabel.text對齊。UITableViewCell文本對齊和子視圖重疊
我對下面的代碼問題的話「考試考試」通過我的複選框圖像,只留下了「t檢驗」了蓋
我的複選框按鈕圖像像
UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(5.0, 7.0, 25.0, 25.0)];
UIImage *uncheckedButtonImage = [UIImage imageNamed:@"unchecked_checkbox.png"];
[button setImage:uncheckedButtonImage forState:UIControlStateNormal];
[cell.contentView addSubview:button];
代碼
和我的手機爲textLabel只是
cell.textLabel.text = @"test test";
反正是有對齊的爲textLabel文字有點向右移動?
爲什麼不使用UILabel作爲視圖並將其添加到單元格,您將擁有更多的控制權。 – 2011-04-06 14:53:57