Установите кнопку Share Sharekit с помощью UIButton, а не UIBarButton - PullRequest
3 голосов
/ 20 марта 2012

В инструкции по установке ShareKit здесь: http://getsharekit.com/install/

говорят, что нужно создать кнопку общего доступа, поместив ее в .m

[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction
 target:self
 action:@selector(share)]

Как мне настроить кнопку общего доступа спросто UIButton, а не UIBarButton?

1 Ответ

0 голосов
/ 20 марта 2012

Создайте свой UIBUtton normall.Затем для метода addTarget используйте share

, поэтому

UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
btn.frame = CGRectMake(.....
[btn addTarget:self action:@selector(share) forControlEvents:UIControlEventTouchUpInside];
...