Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is this possible to increase the frame size of FBLoginView?

if yes then how I could do that using facebook iOS SDK.

share|improve this question

1 Answer

When you initialize it you can set the frame size:

FBLoginView *loginview = [[FBLoginView alloc] initWithFrame:CGRectMake(5, 5, 300.0, 100.0)];

Another way is if you do the normal init, you can set the frame size afterwards:

FBLoginView *loginview = [[FBLoginView alloc] init];
CGRect newFrame = CGRectMake(5, 5, 300.0, 100.0);
loginview.frame = newFrame;
share|improve this answer
Are u sure it should work because i already tried it and its not working. Can u send me working example of this. Anyways thanks for ur response. – Ankit Oct 27 '12 at 5:21
do you have [loginview sizeToFit]; after ? – Neru Nov 30 '12 at 19:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.