美文网首页
###小问题解决

###小问题解决

作者: 纳萨立克 | 来源:发表于2016-05-11 15:22 被阅读24次

    右滑返回功能消失

    清空代理就可以了

    self.interactivePopGestureRecognizer.delegate = nil;
    

    UILable显示图片

        NSTextAttachment *attch = [[NSTextAttachment alloc] init];
        // 表情图片
        attch.image = [UIImage imageNamed:@"video_new"];
        // 设置图片大小
        attch.bounds = CGRectMake(5, 5, 20, 12);
        
        // 创建带有图片的富文本
        NSAttributedString *string = [NSAttributedString attributedStringWithAttachment:attch];
        [attri insertAttributedString:string atIndex:model.Title.length];
      
        self.title.attributedText = attri;
    

    相关文章

      网友评论

          本文标题:###小问题解决

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