Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- - (NSMutableAttributedString *)infoText:(NSIndexPath *)indexPath {
- NSArray *settingArray = [self getArray];
- id specificSetting = [settingArray objectAtIndex:indexPath.row];
- NSMutableAttributedString *dblSpc = [[NSMutableAttributedString alloc] initWithString:@"\n\n"];
- [dblSpc addAttribute:NSFontAttributeName value:[UIFont preferredFontForTextStyle:UIFontTextStyleHeadline] range:NSMakeRange(0, dblSpc.length)];
- NSMutableAttributedString *cellInfoDetails = [[NSMutableAttributedString alloc] initWithString:[specificSetting detail]];
- [cellInfoDetails addAttribute:NSFontAttributeName value:[UIFont preferredFontForTextStyle:UIFontTextStyleHeadline] range:NSMakeRange(0, cellInfoDetails.length)];
- NSMutableAttributedString *infoText = [[NSMutableString alloc] appendAttributedString:cellInfoDetails];
- return infoText;
- }
Advertisement
Add Comment
Please, Sign In to add comment