2013-06-24 130 views
-1

我需要知道如何在Web視圖中添加項目符號,如我們在MSWord Doc文件中所看到的。 我想找出這個東西,但找不到任何成功。 如果有人可以幫助那麼請幫我從這個.... 這裏是我的代碼如何在Webview中的換行符文本中添加項目符號

 function moveCursorToNextLine(x, y, newX, newY) { 

    var label3= iOS.UI.createLabel({ 
             text:'speaks and \nsolution world oneself has ', 
             color:'black', 
             height:'auto', 
             width:'auto', 
             left:232, 
             font:{fontSize:14}, 
             //textAlign:'center', 
             top:480 
             }); 
    view.add(label3); 

    } 

我等待着您的寶貴幫助

+0

在這裏你找到幫助完整的代碼,並嘗試您的代碼http://stackoverflow.com/questions/3798930/iphone-bullet-point-list –

+0

@ Vikas S Rajput我的要求是不同的那一個。如果還有其他東西,請分享 –

+0

@ Ab hishek Rajput評論這個ans可能會幫助你.. http://stackoverflow.com/questions/11365941/formatting-and-bullets-in-a-textbox-in-ios5 –

回答

1

試試這個:

[webView stringByEvaluatingJavaScriptFromString:@"document.execCommand(\"insertunorderedlist\")"]; 
+0

感謝bro.This代碼工作完美 –

相關問題