草庐IT

ios - 从 IBAction 调用外部分配的闭包问题

coder 2023-09-10 原文

我有这个 UIView 子类:

class EmptyAlbumsView: UIView {

class func instanceFromNib() -> EmptyAlbumsView {
    return R.nib.emptyAlbumsView.firstView(owner: nil)! as EmptyAlbumsView
}

// MARK: - IBActions

@IBAction func didTapFreeAlbumButton(sender: UIButton) {
    print("Tapping button")
    print(didTapFreeAlbumButtonClosure)
    didTapFreeAlbumButtonClosure?()
}

@IBAction func didTapEventAlbumButton(sender: UIButton) {
    didTapEventAlbumButtonClosure?()
}

@IBAction func didTapWhatsTheDifferenceButton(sender: UIButton) {
    didTapWhatsTheDifferenceButtonClosure?()
}

@IBAction func didTapSubmitAlbumCodeButton(sender: UIButton) {
    didTapSubmitAlbumCodeButtonClosure?()
}

// MARK: - Public Properties
open var didTapFreeAlbumButtonClosure: EmptyClosure? {
    didSet {
        log.verbose("set to \(self.didTapFreeAlbumButtonClosure!)")
    }
}

open var didTapEventAlbumButtonClosure: EmptyClosure?
open var didTapWhatsTheDifferenceButtonClosure: EmptyClosure?
open var didTapSubmitAlbumCodeButtonClosure: EmptyClosure?

}

我在 UIViewController 中初始化:

 fileprivate func showEmptyAlbumsView() {

    let emptyAlbumsView = EmptyAlbumsView.instanceFromNib()

    emptyAlbumsView.didTapFreeAlbumButtonClosure = {
        print("hey")
    }

    view.addSubview(emptyAlbumsView)
    emptyAlbumsView.matchEdgeAnchorsOfView(self.view)

}

我可以看到来自 IBActionTapping button 日志语句,但是那里的第二个日志语句打印了 nil,因为它显示 didTapFreeAlbumButtonClosure 尚未设置,当然也不会被调用。我从来没有看到 hey 打印出来。

但是,在 didSet block 中,我可以清楚地看到正在设置闭包。

EmptyClosure 定义为 typealias EmptyClosure = () -> ()

我在这里错过了什么?

最佳答案

好吧,在经历了很多挫折之后,这个问题相当愚蠢。

在 Interface Builder 中,我将 xib 的 File Owner 设置为 EmptyAlbumsView。这导致 IBActions 被正确调用,但是当我尝试连接一些 IBOutlets 时,我遇到了 KVC 错误。

看起来正确的方法是将 File Owner 类留空,并将 xib 的 Root View 设置为 EmptyAlbumsView。然后我将我的 IBOutlets 和 IBActions 直接连接到 View 。

关于ios - 从 IBAction 调用外部分配的闭包问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42230478/

有关ios - 从 IBAction 调用外部分配的闭包问题的更多相关文章

  1. ruby - 在 64 位 Snow Leopard 上使用 rvm、postgres 9.0、ruby 1.9.2-p136 安装 pg gem 时出现问题 - 2

    我想为Heroku构建一个Rails3应用程序。他们使用Postgres作为他们的数据库,所以我通过MacPorts安装了postgres9.0。现在我需要一个postgresgem并且共识是出于性能原因你想要pggem。但是我对我得到的错误感到非常困惑当我尝试在rvm下通过geminstall安装pg时。我已经非常明确地指定了所有postgres目录的位置可以找到但仍然无法完成安装:$envARCHFLAGS='-archx86_64'geminstallpg--\--with-pg-config=/opt/local/var/db/postgresql90/defaultdb/po

  2. ruby - 通过 rvm 升级 ruby​​gems 的问题 - 2

    尝试通过RVM将RubyGems升级到版本1.8.10并出现此错误:$rvmrubygemslatestRemovingoldRubygemsfiles...Installingrubygems-1.8.10forruby-1.9.2-p180...ERROR:Errorrunning'GEM_PATH="/Users/foo/.rvm/gems/ruby-1.9.2-p180:/Users/foo/.rvm/gems/ruby-1.9.2-p180@global:/Users/foo/.rvm/gems/ruby-1.9.2-p180:/Users/foo/.rvm/gems/rub

  3. Ruby Koans about_array_assignment - 非平行与平行分配歧视 - 2

    通过ruby​​koans.com,我在about_array_assignment.rb中遇到了这两段代码你怎么知道第一个是非并行赋值,第二个是一个变量的并行赋值?在我看来,除了命名差异之外,代码几乎完全相同。4deftest_non_parallel_assignment5names=["John","Smith"]6assert_equal["John","Smith"],names7end45deftest_parallel_assignment_with_one_variable46first_name,=["John","Smith"]47assert_equal'John

  4. ruby - 通过 RVM (OSX Mountain Lion) 安装 Ruby 2.0.0-p247 时遇到问题 - 2

    我的最终目标是安装当前版本的RubyonRails。我在OSXMountainLion上运行。到目前为止,这是我的过程:已安装的RVM$\curl-Lhttps://get.rvm.io|bash-sstable检查已知(我假设已批准)安装$rvmlistknown我看到当前的稳定版本可用[ruby-]2.0.0[-p247]输入命令安装$rvminstall2.0.0-p247注意:我也试过这些安装命令$rvminstallruby-2.0.0-p247$rvminstallruby=2.0.0-p247我很快就无处可去了。结果:$rvminstall2.0.0-p247Search

  5. ruby - Fast-stemmer 安装问题 - 2

    由于fast-stemmer的问题,我很难安装我想要的任何ruby​​gem。我把我得到的错误放在下面。Buildingnativeextensions.Thiscouldtakeawhile...ERROR:Errorinstallingfast-stemmer:ERROR:Failedtobuildgemnativeextension./System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/rubyextconf.rbcreatingMakefilemake"DESTDIR="cleanmake"DESTDIR=

  6. 使用 ACL 调用 upload_file 时出现 Ruby S3 "Access Denied"错误 - 2

    我正在尝试编写一个将文件上传到AWS并公开该文件的Ruby脚本。我做了以下事情:s3=Aws::S3::Resource.new(credentials:Aws::Credentials.new(KEY,SECRET),region:'us-west-2')obj=s3.bucket('stg-db').object('key')obj.upload_file(filename)这似乎工作正常,除了该文件不是公开可用的,而且我无法获得它的公共(public)URL。但是当我登录到S3时,我可以正常查看我的文件。为了使其公开可用,我将最后一行更改为obj.upload_file(file

  7. ruby - 如何验证 IO.copy_stream 是否成功 - 2

    这里有一个很好的答案解释了如何在Ruby中下载文件而不将其加载到内存中:https://stackoverflow.com/a/29743394/4852737require'open-uri'download=open('http://example.com/image.png')IO.copy_stream(download,'~/image.png')我如何验证下载文件的IO.copy_stream调用是否真的成功——这意味着下载的文件与我打算下载的文件完全相同,而不是下载一半的损坏文件?documentation说IO.copy_stream返回它复制的字节数,但是当我还没有下

  8. ruby - 安装 Ruby 时遇到问题(无法下载资源 "readline--patch") - 2

    当我尝试安装Ruby时遇到此错误。我试过查看this和this但无济于事➜~brewinstallrubyWarning:YouareusingOSX10.12.Wedonotprovidesupportforthispre-releaseversion.Youmayencounterbuildfailuresorotherbreakages.Pleasecreatepull-requestsinsteadoffilingissues.==>Installingdependenciesforruby:readline,libyaml,makedepend==>Installingrub

  9. c# - 如何在 ruby​​ 中调用 C# dll? - 2

    如何在ruby​​中调用C#dll? 最佳答案 我能想到几种可能性:为您的DLL编写(或找人编写)一个COM包装器,如果它还没有,则使用Ruby的WIN32OLE库来调用它;看看RubyCLR,其中一位作者是JohnLam,他继续在Microsoft从事IronRuby方面的工作。(估计不会再维护了,可能不支持.Net2.0以上的版本);正如其他地方已经提到的,看看使用IronRuby,如果这是您的技术选择。有一个主题是here.请注意,最后一篇文章实际上来自JohnLam(看起来像是2009年3月),他似乎很自在地断言RubyCL

  10. Ruby 文件 IO 定界符? - 2

    我正在尝试解析一个文本文件,该文件每行包含可变数量的单词和数字,如下所示:foo4.500bar3.001.33foobar如何读取由空格而不是换行符分隔的文件?有什么方法可以设置File("file.txt").foreach方法以使用空格而不是换行符作为分隔符? 最佳答案 接受的答案将slurp文件,这可能是大文本文件的问题。更好的解决方案是IO.foreach.它是惯用的,将按字符流式传输文件:File.foreach(filename,""){|string|putsstring}包含“thisisanexample”结果的

随机推荐