我在联系人应用程序(iPad)中使用拆分视图控制器。
在DetailedViewController
我使用一些UILabels
向用户显示姓名,公司名称,电话号码,电子邮件ID。
在initWithNibName
方法中,我编写了以下代码..
_mob_Tele = [[UILabel alloc]init];
_mob_Tele.textColor = [UIColor colorWithRed:67/255.0f green:109/255.0f blue:236/255.0f alpha:1.0f];
_mob_Tele.font = [UIFont boldSystemFontOfSize:16];
_mob_Tele.backgroundColor = [UIColor whiteColor];
_mob_Tele.layer.cornerRadius = 5;
[_mob_Tele.layer setMasksToBounds:YES];
在configure view方法中,我写了以下内容:
CGRect frame4 = CGRectMake(236, 250, 290, 30);
_mob_Tele.frame = frame4;
_mob_Tele.text = mobTele;
我也有一些标签显示名称,公司。当我在MasterViewController
上选择一个单元格时,这些字段会更新。
但是某些UILabels
类似_mob_Tel
e并未同时出现。当我选择 cell1 其名称的详细信息时,会加载公司UILabel
,但不会加载_mob_Tele
UILabel
。我选择 cell2 出现了cell1 _mob_Tele
UILabel
。
请帮忙! 谢谢!