右滑返回功能消失
清空代理就可以了
self.interactivePopGestureRecognizer.delegate = nil;
UILable顯示圖片
NSTextAttachment *attch = [[NSTextAttachment alloc] init];
// 表情圖片
attch.image = [UIImage imageNamed:@"video_new"];
// 設置圖片大小
attch.bounds = CGRectMake(5, 5, 20, 12);
// 創(chuàng)建帶有圖片的富文本
NSAttributedString *string = [NSAttributedString attributedStringWithAttachment:attch];
[attri insertAttributedString:string atIndex:model.Title.length];
self.title.attributedText = attri;