使用UIButton设置Sharekit的共享按钮,而不是UIBarButton

时间:2012-03-20 09:34:46

标签: ios uibutton implementation sharekit

在ShareKit的安装说明中:http://getsharekit.com/install/

他们说通过将其放入.m

来创建共享按钮
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction
 target:self
 action:@selector(share)]

如何仅使用UIButton设置共享按钮,而不是UIBarButton?

1 个答案:

答案 0 :(得分:0)

创建您的UIBUtton normall。 然后,对于addTarget方法,请使用share

所以

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