在我的表视图中,我有一个名字,一个姓氏,一个电子邮件地址和一个电话号码。我有Web服务,通过它我可以从服务器获取数据并将其显示在我的设备上。我有一个问题,我从服务器获取的数据正在显示完美,但有些电子邮件地址很长,因此可以看到一半的电子邮件地址后跟点点(即raboert.baderasam11@gma .. ..)。
有没有办法让我点击电子邮件地址,我可以看到所有文字或标签突出显示,即完整的电子邮件地址?或任何突出显示电子邮件地址的工具提示?我希望它在单个视图中而不是多个。必须完成这项任务。所以请帮助我。我是iPhone开发的新手。
here is the code :-
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath: (NSIndexPath*)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
NSArray* currentListOfItems=nil;
Contact *aContact=nil;
if(searching){
currentListOfItems=searchResult;
aContact=[searchResult objectAtIndex:indexPath.row];
}else{
currentListOfItems=content;
aContact=[[[content objectAtIndex:indexPath.section] objectForKey:@"rowValues"]
objectAtIndex:indexPath.row];
}
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:CellIdentifier];
UILabel *lbl3 = [[UILabel alloc]initWithFrame:CGRectMake(12, 0, 150, 20)];
[lbl3 setTextColor:[UIColor blackColor]];
[lbl3 setFont:[UIFont boldSystemFontOfSize:16.0]];
lbl3.text =[NSString stringWithFormat:@"%@ %@", aContact.lastName,aContact.firstName];
[cell addSubview:lbl3];
UILabel *lbl1 = [[UILabel alloc]initWithFrame:CGRectMake(12, 20, 200, 20)];
[lbl1 setTextColor:[UIColor blackColor]];
[lbl1 setFont:[UIFont boldSystemFontOfSize:12.0]];
lbl1.text = aContact.email;
[cell addSubview:lbl1];
UILabel *lbl2 = [[UILabel alloc]initWithFrame:CGRectMake(210, 20, 300, 20)];
[lbl2 setTextColor:[UIColor grayColor]];
[lbl2 setFont:[UIFont fontWithName:@"Arial" size:12.0]];
lbl2.text = [NSString stringWithFormat:@"%@%@", @"| ",aContact.phone] ;
[cell addSubview:lbl2];
return cell;
}
答案 0 :(得分:1)
当用户触摸时,您可以使用电子邮件地址更改标签的宽度。要在标签上接收触摸启用userInteractionEnabled
,请添加UITapGestureRecognizer
。在手势识别器的方法中,将视图属性的宽度更改为手势识别器。
修改强>
标签默认情况下不允许用户交互。为了接收手势,您必须启用用户交互,如此
myLabel.userInteractionEnabled = YES;
要添加UITapGestureRecognizer
,请执行以下操作:
UITapGestureRecognizer *tapGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(lableWasTapped:)];
[myLabel addGestureRecognizer:tapGestureRecognizer];
要对水龙头做出反应,请执行以下操作:
- (void)lableWasTapped:(UITapGestureRecognizer*)sender {
UILabel *label = (UILabel*)sender.view;
CGSize labelSize = [label.text sizeWithFont:label.font];
CGRect labelFrame = label.frame;
labelFrame.size.width = labelSize.width;
label.frame = labelFrame;
}