コードhttp://code.kwint.in/emoji/source/と通信する必要があります。iPhoneの絵文字をWebビュー(エディター)に表示するコードを記述しましたが、画像がないことを示す疑問符の付いた四角いボックスを除いて絵文字が表示されません。だから私は上記のリンクを見つけました。これとどのように通信しますか。私は自分のjsファイルを持っていました。
-(void)imageToTextViewForHome:(id)sender
{
UIButton *refrenceButtonForHome;
refrenceButtonForHome = sender;
int tag = refrenceButtonForHome.tag;
NSLog(@"tag...%d",tag);
NSString *imageNameToPass = [NSString stringWithFormat:@"%@",[emoticonsArrayForHomeEmoji
objectAtIndex:tag]];
NSString *path =[[NSBundle mainBundle] pathForResource:imageNameToPass ofType:@"png"];
NSLog(@"pathForImage..%@",path);
[webViewForEditing stringByEvaluatingJavaScriptFromString:[NSString
stringWithFormat:@"document.execCommand('insertImage', false, '%@')", path]];
}