我在UILabel
面临一个奇怪的问题。如果您查看图片,我的UILabel
右侧会出现一个边框。我在子类化UILabel
以添加一些字符串属性。
此问题不一致。发生在风景或肖像。
任何人都面临这样的问题/可能是什么问题?我做错了吗?
我以下面的方式对它进行分类:
@interface MyLabel : UILabel
@property (nonatomic, strong) NSString *strObjID;
@end
@implementation MyLabel
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
}
}
@end
这是我添加UITableViewCell
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *strId = @"layoutCell";
MyLabel *lblRecord;
UITableViewCell *layoutCell = [tableView dequeueReusableCellWithIdentifier:strId];
if (layoutCell == nil) {
layoutCell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:strId];
[layoutCell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator];
lblRecord = [[MyLabel alloc] initWithFrame:CGRectMake(11, 10, 980,70)];
[layoutCell addSubview:lblRecord];
}
[lblRecord.textLabel setText:[arrListOfLayouts objectAtIndex:indexPath.row]];
return layoutCell;
}