-1

MSWord Doc ファイルで確認できるように、Web ビューに箇条書きを追加する方法を知る必要があります。私はこのことを見つけようとしていますが、成功を見つけることができませんでした。誰かが助けてくれるなら、これから私を助けてください....これが私のコードです

        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);

    }

あなたの貴重な助けを待っています

4

1 に答える 1

1

これを試して :

[webView stringByEvaluatingJavaScriptFromString:@"document.execCommand(\"insertunorderedlist\")"];
于 2013-06-24T11:57:39.340 に答える