我正在尝试以编程方式将信息按钮添加到我的应用导航中。但是,它永远不会触发我正在注册的操作。
UIBarButtonItem* infoButton =[[UIBarButtonItem alloc] initWithCustomView:[UIButton buttonWithType:UIButtonTypeInfoLight]];
[infoButton setTarget:self];
[infoButton setAction:@selector(infoButtonTapped)];
该按钮显示在我的导航栏中,但单击它不会传递到 infoButtonTapped