redribben

new progress

Feb 2nd, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. - (NSMutableAttributedString *)infoText:(NSIndexPath *)indexPath {
  2.     NSArray *settingArray = [self getArray];
  3.     id specificSetting = [settingArray objectAtIndex:indexPath.row];
  4.    
  5.    
  6.     NSMutableAttributedString *dblSpc = [[NSMutableAttributedString alloc] initWithString:@"\n\n"];
  7.     [dblSpc addAttribute:NSFontAttributeName value:[UIFont preferredFontForTextStyle:UIFontTextStyleHeadline] range:NSMakeRange(0, dblSpc.length)];
  8.  
  9.    
  10.     NSMutableAttributedString *cellInfoDetails = [[NSMutableAttributedString alloc] initWithString:[specificSetting detail]];
  11.     [cellInfoDetails addAttribute:NSFontAttributeName value:[UIFont preferredFontForTextStyle:UIFontTextStyleHeadline] range:NSMakeRange(0, cellInfoDetails.length)];
  12.    
  13.                                          
  14.     NSMutableAttributedString *infoText = [[NSMutableString alloc] appendAttributedString:cellInfoDetails];
  15.  
  16. return infoText;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment