I'm developing an app for iOS that use the new Twitter framework. I have a webView, how can I know the current url? And how can I use for create a Tweet?
Sorry for my bad English and thanks!
|
I'm developing an app for iOS that use the new Twitter framework. I have a webView, how can I know the current url? And how can I use for create a Tweet? Sorry for my bad English and thanks! |
|||||
|
|
You can retrieve the current URL from the web view as follows: To allow the user to post to Twitter, you can display a |
|||
|
|
|
First you should read the documentation . Look for the Instance method stringByEvaluatingJavaScriptFromString: ( - (NSString *)stringByEvaluatingJavaScriptFromString:(NSString *)script ) example of use is :
The parameter/script 'window.location.href' is a javascript call. This method will give the url as a string that you can then most likely pass on to your twitter code. |
|||||||
|