iphone - Is it possible to Customize FaceBook PostView in iOS 6? -
i'm using social framework share facebook. possible change text on indicated buttons in following screenshot? appreciated.
yes can bellow method integration if can send message using social framework share facebook.
you need add :-
- (void)findsubviewoffb:(uiview*)theview { (uiview * subview in theview.subviews) { // subview.hidden=true; if ([subview iskindofclass:[uibutton class]]) { uibutton *btn = (uibutton *)subview; if([btn.titlelabel.text isequaltostring:@"send"]) { [btn settitle:@"msg" forstate:uicontrolstatenormal]; } } [self findsubviewoffb:subview]; } }
and add above method in message send class:-
[self findsubviewoftwitter:facebook.view];
i tested in twitter integration of using social framework , change send button title using above method , tweet message box like:-
Comments
Post a Comment