hi . for my app iam using Facbook connect to share something from my app to facebook now for Facebook connect . i use UIACtion Sheet . i want change the title of Log in and log out buttons . it means if user log in the facebook my button title change into @"Log Out" and when user is logout title change to @"Log in "
- (void)session:(FBSession*)session didLogin:(FBUID)uid {
//change title to Log Out
}
- (void)sessionDidLogout:(FBSession*)session {
//change title to Log In
}
thank you