我试图在导航栏中的共享按钮上添加一个操作,但我不知道如何以及在哪里定义我的“shareAction”方法。要添加共享按钮,我在viewWillAppear中有以下代码:
UIBarButtonItem *shareButton = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemAction
target:self
action:@selector(shareAction:)];
self.navigationItem.rightBarButtonItem = shareButton;
字符串
3条答案
按热度按时间eyh26e7m1#
在implementation.m文件中
字符串
gcmastyq2#
Swift
字符串
7hiiyaii3#
Swift 3.0
在
viewDidLoad
中编写此代码字符串
共享按钮操作
型