html - 如何删除移动 Twitter 闪屏?

标签 html ios objective-c url twitter

我有一个带有 Twitter 页面选项卡的 iPhone 应用程序...但是,每次有人访问它时...它会加载以下启动页面,我不知道如何在加载时删除此启动画面推特页面?

我当前的代码是

[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://twitter.com/TwitterNAME"]]];

我不想使用表格 View 来显示推文...

enter image description here

最佳答案

只需将此字符串附加到 URL:?skip_interstitial=true,结果如下:

http://twitter.com/TwitterNAME?skip_interstitial=true

您可能想要使用整个 URL 结构来格式化字符串:

[NSString stringWithFormat:@"http://twitter.com/%s?skip_interstitial=true",TwitterNameVar]

结果如下:

[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://twitter.com/%s?skip_interstitial=true",TwitterNameVar]]]];

关于html - 如何删除移动 Twitter 闪屏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19965669/

相关文章:

ios - UISearchBar : searchBarSearchButtonClicked delegate is not called

html - 无法通过 html 和 css 将图像与链接和文本对齐

ios - 我所有应用程序的 Apple Mach-O 链接器错误

ios - 分支测试/实时链接未按预期工作

ios - 修改3D模型的Bounding Box尺寸

iOS 导航 Controller pushViewController 不工作

ios - 如果用户将 "Set Automatically"设置为关闭,如何检查正确的当前时间

html - 使用 CSS 和 HTML 的响应式网格

html - 导航栏上的事件类无法正常工作

javascript - 如何扫描网站的静态副本以寻找被黑客入侵的证据