FBConnect (IPHONE),自定义发布对话框

发布于 2024-08-17 23:38:16 字数 147 浏览 6 评论 0原文

可以自定义FBdialog吗??,当用户想要发布帖子时,我已经修改了对话框上的附件;但我需要隐藏对话框呈现的文本字段...有一种方法可以访问此属性,或者它只是一个从 facebook 服务器加载页面的 webView?

抱歉我的英语不好!

提前致谢

is possible custominzing the FBdialog??, i have already modify the attachment on the dialog when the user wants to publish a post; but i need to make hidden the textfield that the dialog presents...there is a way to access to this property or it's just a webView that load a page from facebook's server?

sorry for my bad english!

thanks in advance

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

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

发布评论

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

评论(1

终止放荡 2024-08-24 23:38:16

是的,这是可能的。只需设计您自己的 UI 并将消息传递给包含以下代码的方法:

NSString *message = @"test message here";
NSMutableDictionary *params = [NSMutableDictionary dictionary];
[params setObject:message forKey:@"message"];
[params setObject:toID forKey:@"target_id"];
[[FBRequest requestWithDelegate:self] call:@"facebook.Stream.publish" params:params];

Yes, this is possible. just design your own UI and pass the message to a method containing this code:

NSString *message = @"test message here";
NSMutableDictionary *params = [NSMutableDictionary dictionary];
[params setObject:message forKey:@"message"];
[params setObject:toID forKey:@"target_id"];
[[FBRequest requestWithDelegate:self] call:@"facebook.Stream.publish" params:params];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文