如何将 twitter api 集成到 iphone SDK 中,使其所有功能都在一个视图上

发布于 2024-10-03 20:44:37 字数 256 浏览 3 评论 0原文

在我的 iPhone 应用程序中,我有一个 Twitter 页面,用户可以在其中更新他/她的状态。

这里的问题是用户必须单击视图(例如视图 A)上的按钮并转到下一个视图(例如视图 B)。

在该视图(视图 B)上,模式视图将出现,用户可以在其中添加他的身份验证详细信息,然后提交。

现在我希望模态视图应该出现在该视图(视图 A)上,而不是切换到另一个视图(视图 B)。

我应该怎么办?

请帮助和建议

谢谢

In my iphone app, I am having a twitter page where the user can update his/her status.

Here, the problem is that the user has to click the button on view (say view A) and go to next view(say view B).

On that view (view B), the modal view then appears where in the user can add his authenication details and then submit.

Now I want that the modalview should appear on the that view (view A) rather than switching to another view (view B).

What should I do?

Please Help and Suggest

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

偏爱你一生 2024-10-10 20:44:37

该功能可以添加到视图“A”本身。完成添加所需的框架和类后,您可以在按钮操作方法中添加此代码。

-(IBAction) showTwitter:(id)sender{
    UIViewController    *controller = [SA_OAuthTwitterController controllerToEnterCredentialsWithTwitterEngine: _engine delegate: self];    
    if (controller) {
        [self presentModalViewController: controller animated: YES];
    }
    else {
            //comes here when user has already keyed in His credentials
           //can add code here
    }   
}

此链接可能对您有帮助。
http://mobile.tutsplus.com/tutorials/iphone/twitter-api-苹果手机/

The functionality can be added on View "A" itself. Once you finish up adding required Framework and classes you can add this code in the button action method.

-(IBAction) showTwitter:(id)sender{
    UIViewController    *controller = [SA_OAuthTwitterController controllerToEnterCredentialsWithTwitterEngine: _engine delegate: self];    
    if (controller) {
        [self presentModalViewController: controller animated: YES];
    }
    else {
            //comes here when user has already keyed in His credentials
           //can add code here
    }   
}

This link might be of help to you.
http://mobile.tutsplus.com/tutorials/iphone/twitter-api-iphone/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文