1

我需要与代码http://code.kwint.in/emoji/source/进行交流。我已经编写了代码来让 iPhone 表情符号进入网络视图(编辑器),但它不显示表情符号,除了带有问号的方框,表示没有图像。所以我找到了上面的链接。我如何与这个沟通。我有我的 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]];
 }
4

1 回答 1

1

一个 webview 可以运行 javascript,但我猜你不能直接返回一些东西。

看看下面的例子:

http://will.thimbleby.net/script/

于 2012-10-22T07:35:01.960 回答