在ShareKit的安装说明中:http://getsharekit.com/install/
他们说通过将其放入.m
来创建共享按钮[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction
target:self
action:@selector(share)]
如何仅使用UIButton设置共享按钮,而不是UIBarButton?
答案 0 :(得分:0)
创建您的UIBUtton
normall。
然后,对于addTarget
方法,请使用share
所以
UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
btn.frame = CGRectMake(.....
[btn addTarget:self action:@selector(share) forControlEvents:UIControlEventTouchUpInside];