ios - Textview with link mail highlighting in TableViewCell changes tintColor for seconds -


i have textview in tableviewcell. in interfacebuilder set link, mail , address detection textview. links, mail , addresses highlighted. textview selectable, too.

i'm working autorefresh, content of the tableviewcell reload 30 seconds. everytime when happen, highlighting disappears < 1 second , the highlighting comes back.

sometimes happens @ initialize load of tableviewcell.

there seems bunch of bugs in ios 7... use minimum 8.4.

so know bug oder has help? thank you

try use attribute method customize string in method similar this:

let myattribute = [ nsforegroundcolorattributename: uicolor.bluecolor() ] let myattrstring = nsattributedstring(string: stringwithlinks, attributes: myattribute)  

so have customized string. job


Comments