美文网首页
NSAttributedString 文字居中

NSAttributedString 文字居中

作者: 唐人街的乞丐 | 来源:发表于2020-05-18 14:52 被阅读0次
        
            NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
            paragraphStyle.alignment = NSTextAlignmentCenter;
            [attributedText addAttribute:NSParagraphStyleAttributeName value:paragraphStyle 
          range:NSMakeRange(0, [string  length])];
    

    相关文章

      网友评论

          本文标题:NSAttributedString 文字居中

          本文链接:https://www.haomeiwen.com/subject/csbuohtx.html