3

I have the following text in my RTF file..

"The possibility of an attack on Indian Point, a nuclear power plant, has caused local governmental officials to plan evaluation routes, build shelters, and offering citizens potassium pills so there will be fewer casualties in case of a leak."

In that text "plan evaluation routes, build shelters, and offering citizens potassium pills so there will be" is underlined text. When I am copying this text into sqlite database and displaying on Simulator using TextView, I am Not Getting UnderLine... How to get it in iPhone..? From Which Format (word,pdf..) of documents i want to copy to get the exact text...

4

2 に答える 2

0

UITextView はテキスト属性をサポートしていません。UIWebview をいくつかの html と共に使用して (簡単な方法で) それを行うか、Coretext と NSAttributedString を使用して独自のテキスト フィールドを作成することができます。このサイトには、後者に関するかなりの情報があります: http://www.raywenderlich.com/4147/how-to-create-a-simple-magazine-app-with-core-text

于 2012-05-22T12:06:07.550 に答える
0

TextView は、単一フォントの動作を持ち、multiFont およびテキスト属性をサポートしていないため、下線付きテキストをサポートしていません。RTF ファイルのテキスト ビュー内で Web ビューを使用できます。このリンクを試してみてください。簡単に理解できるHTMlがたくさんあります。 http://kiefermat.com/2011/09/30/using-uiwebview-for-displaying-rich-text/

于 2012-05-22T12:12:15.553 に答える