OC实现简单的图文混排

- (void)showCity:(NSString *)cityname
{
    //实现富文本
    NSMutableAttributedString *string = [[NSMutableAttributedStringalloc] initWithString:citynameattributes:nil];
    //进行图文混排
    NSTextAttachment *textAttachment = [[NSTextAttachmentalloc] initWithData:nilofType:nil];
    textAttachment.image = [UIImageimageNamed:@"f_flagdown02@2x"];
    textAttachment.bounds =CGRectMake(0,0, 11,8);
    NSAttributedString * textAttachmentString = [NSAttributedStringattributedStringWithAttachment:textAttachment];
    //判断选择的城市名称长度是否大于5个字符的长度,如果大于五个字符就取前四个字符,然后再在最后添加一个图标
    if (string.length >=5) {
        //去前四个字符
        NSAttributedString *str = [stringattributedSubstringFromRange:NSMakeRange(0,4)];
        //将NSAttributedString类型转换成NSString类型
        NSString *cityString = [strstring];
        string = [[NSMutableAttributedStringalloc] initWithString:[NSStringstringWithFormat:@"%@..",cityString]attributes:nil];
    }

    //在城市名称后插入图片
    [string insertAttributedString:textAttachmentStringatIndex:string.length];
    //自定义按钮
    UIButton *btn = [UIButtonbuttonWithType:UIButtonTypeRoundedRect];
    btn.frame =CGRectMake(0,0, 70,30);
    [btn addTarget:selfaction:@selector(navBtnCLick)forControlEvents:UIControlEventTouchUpInside];
    UILabel *lbText = [[UILabelalloc] initWithFrame:CGRectMake(0,0, btn.frame.size.width+10, btn.frame.size.height)];
    lbText.attributedText = string;
    lbText.textColor = [UIColorwhiteColor];
    lbText.font = [UIFontsystemFontOfSize:13];
    [btn addSubview:lbText];
    btn.backgroundColor = [UIColorclearColor];
    self.navigationItem.leftBarButtonItem = [[UIBarButtonItemalloc] initWithCustomView:btn];
}
实现效果:


你可能感兴趣的:(OC)