我已经得到了我想要能够使用自定义URL方案的应用程序。 我希望用户能够使用自定义URL协议,但是我需要填充我开始使用currentItem.link动态网站链接鸣叫打开的Tweetie。
我发现这个代码,启动特威特并填充静态信息的消息:
NSString *shortened_url = @"http://your.url.com";
NSString *stringURL = [NSString stringWithFormat:@"tweetie://%@", shortened_url];
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];
因此,使用上面的代码,我怎么会填充currentItem.link信息的消息?
谢谢。