0

I have integrated the latest sharekit code into my project. I am able to click in, to go to the facebook and able to see the text I am going to post.

I would like to change two things.

Firstly, I am not able to see the cancel or post button because of my app picture at top. So I would like to set the view to be scrollable. How do I change that?

Secondly, I would like to remove the keyboard after I press return, or I want a way to remove the keyboard.

Thirdly, when i click the text edit, it gives me Error: HTTP status code: 404. How to solve this?

Need some help on this..Thanks..

laksh
  • 2,209
  • 6
  • 21
  • 25

3 Answers3

1

if you use following code it will dissmiss the keyboard.

[self.view Endediting:YES];
Siba Prasad Hota
  • 4,779
  • 1
  • 20
  • 40
0
[yourtextview resignFirstResponder];

this will remove the keyboard

Or as a general case, you can use this: [self.view Endediting:YES];

DD_
  • 7,230
  • 11
  • 38
  • 59
0

ShareKit never seemed to be customizable. Personally, I had displeasure to integrate it into the project to post images to Flickr and Twitter, but nothing else. For what I see there now, ShareKit is still using old FacebookSDK (or at least it look so). For better customization, I'd suggest to throw away Facebook from your ShareKit and just use new FacebookSDK.

eagle.dan.1349
  • 611
  • 1
  • 8
  • 20