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.

enter image description here

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:-

enter image description here


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -