1

我刚开始学习Facebook IOS SDK,现在遇到一个问题。我想加载用户个人资料视图但失败了。这是我的代码。

-(void)loginViewFetchedUserInfo:(FBLoginView *)loginView user:(id<FBGraphUser>)user
{
    loggedInUser=user;
    profilePic.profileID=user.id;
}

我可以获取 user.id,但 profileID 为 nil。我不使用情节提要来创建 FBProfilePictureView。请帮助解决这个问题。非常感谢

4

1 回答 1

2

按照本教程https://developers.facebook.com/docs/tutorials/.../3.0/scrumptious/ 另外,为了加载你必须这样做的图像图片:在 IB 中取消选中使用自动布局为 FBprofilepictureview,也取消选中“自动调整子视图”到视图中。这个对我有用!

于 2012-12-05T10:09:26.017 回答