我有一个聊天应用程序,我需要发送图像(表情符号)和文本
现在,我可以通过NSTextAttatchment
(代码以下)
NSTextAttachment *textAttachment = [[NSTextAttachment alloc] init];
NSString *img=[NSString stringWithFormat:@"%@.png",imgName];
textAttachment.image =[UIImage imageNamed:img];
NSAttributedString *attrStringWithImage = [NSAttributedString attributedStringWithAttachment:textAttachment];
NSMutableAttributedString *nStr=[[NSMutableAttributedString alloc]initWithAttributedString:_txtChat.attributedText];
[nStr appendAttributedString:attrStringWithImage];
_txtChat.attributedText =nStr;
现在,我想要的是附上自定义文字说" :)
"到微笑图标,以便在调用_txtChat.text
时返回:)而不是UIImage
。因此,如果用户看到Hii <Smilie>
,我会得到"Hii :)"
。我无法确定是否有可能获得。
答案 0 :(得分:3)
自己解决了问题。
我们需要做以下事情: -
1.要检索内容,我们需要向UITextView(customCategory)添加一个方法(richText),说UITextView(RichText)(文本已经存在,所以我建议使用richText)以便检索所需的文本值。
2.将自定义文本保存到NSTextAttachment中。这是通过继承NSTextAttachment(到customNSTextAttatchment)并添加@property id自定义来完成的。
现在,在创建customNSTextAttachment之后(与我的问题中的代码类似),我们可以将所需的NSString分配给自定义。
要检索,我们会执行以下操作:
@implementation UITextView(RichText)
-(NSString*)richText
{
__block NSString *str=self.attributedText.string; //Trivial String representation
__block NSMutableString *final=[NSMutableString new]; //To store customized text
[self.attributedText enumerateAttributesInRange:NSMakeRange(0, self.attributedText.length) options:0 usingBlock:
^(NSDictionary *attributes, NSRange range, BOOL *stop) {
//enumerate through the attributes
NSString *v;
NSObject* x=[attributes valueForKey:@"NSAttachment"];
if(x) //YES= This is an attachment
{
v=x.custom; // Get Custom value (i.e. the previously stored NSString).
if(v==nil) v=@"";
}
else v=[str substringWithRange:range]; //NO=This is a text block.
[final appendString:v]; //Append the value
}];
return final;
}