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.

I am using FBConnect in my app and want to know that can i change that FBLoginButton

I think i am using some older version of the FBConnect becaose it is very blurry

There is a method in the button class i can give my own path but i have worry , will apple accept that change in the API..

- (UIImage*)buttonImage {
  if (_session.isConnected) {
    return [UIImage imageNamed:@"FBConnect.bundle/images/logout.png"];
  } else {
    if (_style == FBLoginButtonStyleNormal) {
      return [UIImage imageNamed:@"FBConnect.bundle/images/login.png"];
    } else if (_style == FBLoginButtonStyleWide) {
      return [UIImage imageNamed:@"FBConnect.bundle/images/login2.png"];
    } else {
      return nil;
    }
  }
}

Thank You

share|improve this question

1 Answer

The "API" you refer to was created by a company outside of Apple (namely, Facebook). As such, the provisions regarding modifying Apple's source code or using private APIs do not apply.

share|improve this answer

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.