FacebookFBLoginViewの幅を増やす必要があります。
そこで、フレーム幅を変えてみましたが、効果がないようです。
x、yは変更できますが、幅は変更できません。なぜですか。
(void)viewDidLoad {
[super viewDidLoad];
CGRect usableBounds =[[UIScreen mainScreen] bounds];
// Create Login View so that the app will be granted "status_update" permission.
FBLoginView *loginview = [[FBLoginView alloc] init];
loginview.frame= CGRectOffset(loginview.frame,
([[UIScreen mainScreen] bounds].size.width-loginview.frame.size.width)/2,
([[UIScreen mainScreen] bounds].size.height-loginview.frame.size.height)/2 -50);
loginview.delegate = self;
[self.view addSubview:loginview];
[loginview sizeToFit];