Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个 iPhone 应用程序,我想知道如何以编程方式显示一个带有粗体和/或不同大小的子字符串的文本块。似乎它应该是可行的,但我很难找到一个例子或找到合适的东西来搜索。
您唯一的选择是使用UIWebView. 使用动态创建您的 HTML [NSString stringWithFormat:];,然后您可以执行[myWebView loadHTMLString:previouslyCreatedHTMLString baseURL:nil];
UIWebView
[NSString stringWithFormat:];
[myWebView loadHTMLString:previouslyCreatedHTMLString baseURL:nil];
希望这可以帮助。
干杯!