Podobny do iPhone
mail, chcę wyświetlić odbiorców jako UIButton
. Ale nie jestem w stanie go poprawnie wdrożyć.
Tworzę wszystkich odbiorców za pomocą jednego UILabel, a następnie przypisuję do niego przypisany tekst.Pokaż odbiorcę jako UIButton
NSMutableArray *arrRecipients = [NSMutableArray new];
if([message.Recipients containsString:@", "])
{
NSArray *arr = [message.Recipients componentsSeparatedByString:@", "];
for(int i = 0; i < arr.count; i++)
{
[arrRecipients addObject:[arr objectAtIndex:i]];
}
}
else
{
[arrRecipients addObject:message.Recipients];
}
NSString *recipientString = @"";
for(int i = 0; i < arrRecipients.count; i++)
{
if([recipientString isEqual:@""])
recipientString = [arrRecipients objectAtIndex:i];
else
recipientString = [recipientString stringByAppendingString:[NSString stringWithFormat:@" %@", [arrRecipients objectAtIndex:i]]];
}
NSMutableAttributedString *str = [[NSMutableAttributedString alloc]initWithString:[NSString stringWithFormat:@"%@: %@", NSLocalizedString(@"to", nil), recipientString]];
for(NSString *value in arrRecipients)
{
NSRange range = [recipientString rangeOfString:value];
[str addAttribute:NSBackgroundColorAttributeName value:[UIColor colorWithRed:205.0/255.0 green:205.0/255.0 blue:205.0/255.0 alpha:1.0] range:NSMakeRange(range.location + 4, range.length)];
}
UILabel *recipients = [[UILabel alloc]initWithFrame:CGRectMake(5, subject.frame.origin.y + subject.frame.size.height + 6, viewHeader.frame.size.width - 5, 20)];
recipients.attributedText = str;
recipients.numberOfLines = 0;
recipients.font = [UIFont systemFontOfSize:14];
[viewHeader addSubview:recipients];
[recipients sizeToFit];
[viewHeader sizeToFit];
Wyniki:
nie jest to całkiem dobry.
Jak mogę to poprawić?
Jako "Uibutton", z jakiego rodzaju dostosowaniem/wyglądem? W przeciwnym razie możesz użyć 'NSLinkAttributeName'? – Larme
Możesz także osiągnąć to samo używając 'UICollectionView' lub możesz użyć [TURecipientBar z github] (https://github.com/davbeck/TURecipientBar). –
Spójrz na to https://www.cocoacontrols.com/controls/jstokenfield – iPatel