0

Whenever the user wants to select a new share method or action that isn't listed by default, by tapping the "More" button on the UIActivityViewController generated share sheet, a new view is displayed, As everybody knows.i need to change the bar button on that page enter image description here

can anybody help me on adding our own bar button as a rightbarbutton item?

hacker
  • 8,919
  • 12
  • 62
  • 108

1 Answers1

-1

Try with this. if not you want this ,then explain a little bit more.

UIBarButtonItem *addButton = [[UIBarButtonItem alloc]initWithTitle:@"Done" style:UIBarButtonItemStyleDone target:self action:@selector(doneButtonPressed)];
self.navigationItem.rightBarButtonItem = addButton;
Jamil
  • 2,977
  • 1
  • 13
  • 23