I am working on UIWebView. But blink tag is not working in webview. How to blink text in UIWebView
NSString *htmlText= @"<blink><br>My Text</blink>";
[webView loadHTMLString:htmlText baseURL:nil];
Reply ...
I am working on UIWebView. But blink tag is not working in webview. How to blink text in UIWebView
NSString *htmlText= @"<blink><br>My Text</blink>";
[webView loadHTMLString:htmlText baseURL:nil];
Reply ...
The <blink>
tag is deprecated and shouldn't be used in modern HTML. You can achieve the same effect through JavaScript or pure CSS, which a UIWebView
will support. This question - Blinking text cross browser - will help you implement either approach.