我正在使用colorWithPattern
Image来更改UITextView的
文本颜色.它在IO7中工作正常,但在IO6中不起作用.
这是我的代码: –
text.textColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"ColorName.png"]];
UITextView的内部在iOS 6和7之间发生了巨大的变化.在iOS7之前,UITextView
不支持文本颜色的图案颜色.有几个组件在iOS 7中获得了对图案颜色的
支持,而UITextView就是其中之一.
原文链接:https://www.f2er.com/iOS/331797.html