我刚开始学习Facebook IOS SDK,现在遇到了问题。我想加载用户个人资料视图但失败了。这是我的代码。
-(void)loginViewFetchedUserInfo:(FBLoginView *)loginView user:(id<FBGraphUser>)user
{
loggedInUser=user;
profilePic.profileID=user.id;
}
我可以获取user.id,但profileID为nil。我不使用故事板来创建FBProfilePictureView。 请帮忙。非常感谢
答案 0 :(得分:2)
按照本教程https://developers.facebook.com/docs/tutorials/.../3.0/scrumptious/ 另外,为了加载图片图片,你必须这样做:在IB中取消选中对FBprofilepictureview使用autolayout,同时取消选中“autoresize subviews”到视图中。它对我有用!