TableView的cell中放入文本框是怎么做的
答案:2 悬赏:50 手机版
解决时间 2021-02-13 15:03
- 提问者网友:你给我的爱
- 2021-02-13 08:15
TableView的cell中放入文本框是怎么做的
最佳答案
- 五星知识达人网友:渊鱼
- 2021-02-13 09:06
已经解决 ,非常感谢楼上帮助
CGRect labelRect = CGRectMake(100, 5.0, 50, 50);
UILabel *label = [[UILabel alloc] initWithFrame:labelRect];
label.text = @"名称:";
label.backgroundColor=[UIColor clearColor];
[cell addSubview:label];
CGRect labelRect2 = CGRectMake(180, 5.0, 100, 50);
UITextField *text1 = [[UITextField alloc] initWithFrame:labelRect2];
text1.backgroundColor=[UIColor grayColor];
text1.placeholder =@"输入订单号";
text1.clearButtonMode = UITextFieldViewModeAlways;
text1.adjustsFontSizeToFitWidth = YES;
[cell addSubview:text1];
CGRect labelRect = CGRectMake(100, 5.0, 50, 50);
UILabel *label = [[UILabel alloc] initWithFrame:labelRect];
label.text = @"名称:";
label.backgroundColor=[UIColor clearColor];
[cell addSubview:label];
CGRect labelRect2 = CGRectMake(180, 5.0, 100, 50);
UITextField *text1 = [[UITextField alloc] initWithFrame:labelRect2];
text1.backgroundColor=[UIColor grayColor];
text1.placeholder =@"输入订单号";
text1.clearButtonMode = UITextFieldViewModeAlways;
text1.adjustsFontSizeToFitWidth = YES;
[cell addSubview:text1];
全部回答
- 1楼网友:痴妹与他
- 2021-02-13 10:36
cgrect labelrect = cgrectmake(100, 5.0, 50, 50);
uilabel *label = [[uilabel alloc] initwithframe:labelrect];
label.text = @"名称:";
label.backgroundcolor=[uicolor clearcolor];
[cell addsubview:label];
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯