谢谢!
@H_403_13@cell.commentbutton.addTarget(self,action: #selector(FeedVIEwController.dIDTapCommentbutton(_:)),forControlEvents: UIControlEvents.touchUpInsIDe)它被调用的选择器
@H_403_13@func dIDTapCommentbutton(post: Post) {}解决方法 您需要在dIDTapCommentbutton(_ :)上使用@objc属性将其用于#selector。你说你这样做,但你有另一个错误。我的猜测是,新的错误是Post不是与Objective-C兼容的类型。如果所有参数类型及其返回类型与Objective-C兼容,则只能向Objective-C公开一种方法。
你可以通过发布NSObject的子类来修复,但这并不重要,因为dIDTapCommentbutton(_ :)的参数不会是Post。动作功能的参数是动作的发送者,该发送方将是commentbutton,这可能是一个UIbutton。你应该这样声明dIDTapCommentbutton:
@H_403_13@@objc func dIDTapCommentbutton(sender: UIbutton) { // ...}然后,您将面临获取与点击按钮相对应的帖子的问题。有多种方法可以得到它。这是一个。
我收集(因为你的代码是cell.commentbutton),你正在设置一个表视图(或一个集合视图)。而且由于您的单元格具有名为commentbutton的非标准属性,我认为它是一个自定义的UItableVIEwCell子类。所以让我们假设你的单元格是一个这样声明的PostCell:
@H_403_13@class PostCell: UItableVIEwCell { @IBOutlet var commentbutton: UIbutton? var post: Post? // other stuff...}然后,您可以从按钮中查看层次结构,查找PostCell,并从中获取帖子:
@H_403_13@@objc func dIDTapCommentbutton(sender: UIbutton) { var ancestor = sender.supervIEw while ancestor != nil && !(ancestor! is PostCell) { ancestor = vIEw.supervIEw } guard let cell = ancestor as? PostCell,post = cell.post else { return } // Do something with post here} 总结以上是内存溢出为你收集整理的xcode – ‘#selector’是指不暴露于Objective-C的方法全部内容,希望文章能够帮你解决xcode – ‘#selector’是指不暴露于Objective-C的方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)