草庐IT

iOS 在设置导航项时崩溃

coder 2023-09-30 原文

我有一个 UIButton,它在触地事件时弹出一个 UIViewController 来查看。在 viewDidLoad 中,应用程序崩溃并出现异常:

-[UILabel stringByTrimmingCharactersInSet:]: unrecognized selector sent to instance 0x16674e30

这是导致崩溃的代码:

viewController.navigationController.navigationBar.barStyle = UIBarStyleBlack;
UIImage *logo = [UIImage imageNamed:backgroundImageName];
UIImageView *logoView = [[UIImageView alloc] init];
logoView.image = logo;
logoView.frame = CGRectMake(0, 0, 50, 30);
viewController.navigationItem.titleView = logoView; // crash at this line

最后一行是导致崩溃的那一行。我将 SWRevealController 用作左滑抽屉式菜单。我有 5 个其他 UIViewControllers 使用完全相同的代码并正常工作,但我找不到它们与其他类之间的任何区别。我知道这可能看起来有点含糊,但我不确定现在该从哪里来解决这个问题。任何帮助将不胜感激。

这是主线程崩溃时的堆栈:

#0  0x378416a0 in objc_exception_throw ()
#1  0x2d4e47b6 in -[NSObject(NSObject) doesNotRecognizeSelector:] ()
#2  0x2d4e30ae in ___forwarding___ ()
#3  0x2d431dc8 in __forwarding_prep_0___ ()
#4  0x2fcfc78e in -[UINavigationItem initWithTitle:] ()
#5  0x2fcfc6dc in -[UIViewController(UINavigationControllerItem) navigationItem] ()
#6  0x00110b94 in -[CSUtility addleftButtonToNavItem:rightButton:background:rightButtonTitle:forViewController:revealViewController:overrideLeft:] at /Users/shawn/Documents/TruthIt/TruthIOS/TruthiOS/TruthiOS/CSUtility.m:59
#7  0x0012cd92 in -[CSQuestionDetailViewController viewDidLoad] at /Users/shawn/Documents/TruthIt/TruthIOS/TruthiOS/TruthiOS/CSQuestionDetailViewController.m:227
#8  0x2fc6995a in -[UIViewController loadViewIfRequired] ()
#9  0x2fc69718 in -[UIViewController view] ()
#10 0x2fdf5c2a in -[UINavigationController _startCustomTransition:] ()
#11 0x2fd13a16 in -[UINavigationController _startDeferredTransitionIfNeeded:] ()
#12 0x2fd13820 in -[UINavigationController __viewWillLayoutSubviews] ()
#13 0x2fd137b8 in -[UILayoutContainerView layoutSubviews] ()
#14 0x2fc65352 in -[UIView(CALayerDelegate) layoutSublayersOfLayer:] ()
#15 0x2f8eb942 in -[CALayer layoutSublayers] ()
#16 0x2f8e7166 in CA::Layer::layout_if_needed(CA::Transaction*) ()
#17 0x2f8e6ff8 in CA::Layer::layout_and_display_if_needed(CA::Transaction*) ()
#18 0x2f8e6a0c in CA::Context::commit_transaction(CA::Transaction*) ()
#19 0x2f8e681e in CA::Transaction::commit() ()
#20 0x2f8e054c in CA::Transaction::observer_callback(__CFRunLoopObserver*, unsigned long, void*) ()
#21 0x2d4abf68 in __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ ()
#22 0x2d4a98f6 in __CFRunLoopDoObservers ()
#23 0x2d4a9c42 in __CFRunLoopRun ()
#24 0x2d414470 in CFRunLoopRunSpecific ()
#25 0x2d414252 in CFRunLoopRunInMode ()
#26 0x321482ea in GSEventRunModal ()
#27 0x2fcc9844 in UIApplicationMain ()
#28 0x00111d7c in main at /Users/shawn/Documents/TruthIt/TruthIOS/TruthiOS/TruthiOS/main.m:16

这有点有趣,如果我将 View 代码切换到 viewWillAppear,我仍然会崩溃,而不是我的代码。这是堆栈跟踪:

Thread 1, Queue : com.apple.main-thread
#0  0x378416a0 in objc_exception_throw ()
#1  0x2d4e47b6 in -[NSObject(NSObject) doesNotRecognizeSelector:] ()
#2  0x2d4e30ae in ___forwarding___ ()
#3  0x2d431dc8 in __forwarding_prep_0___ ()
#4  0x2fcfc78e in -[UINavigationItem initWithTitle:] ()
#5  0x2fcfc6dc in -[UIViewController(UINavigationControllerItem) navigationItem] ()
#6  0x2fd1559a in -[UINavigationController _hasTranslucentNavigationBarIncludingViewController:] ()
#7  0x2fd1542c in -[UINavigationController _shouldNavigationBarInsetViewController:orOverlayContent:] ()
#8  0x2fd14c3e in -[UINavigationController _frameForViewController:] ()
#9  0x2fdf5c48 in -[UINavigationController _startCustomTransition:] ()
#10 0x2fd13a16 in -[UINavigationController _startDeferredTransitionIfNeeded:] ()
#11 0x2fd13820 in -[UINavigationController __viewWillLayoutSubviews] ()
#12 0x2fd137b8 in -[UILayoutContainerView layoutSubviews] ()
#13 0x2fc65352 in -[UIView(CALayerDelegate) layoutSublayersOfLayer:] ()
#14 0x2f8eb942 in -[CALayer layoutSublayers] ()
#15 0x2f8e7166 in CA::Layer::layout_if_needed(CA::Transaction*) ()
#16 0x2f8e6ff8 in CA::Layer::layout_and_display_if_needed(CA::Transaction*) ()
#17 0x2f8e6a0c in CA::Context::commit_transaction(CA::Transaction*) ()
#18 0x2f8e681e in CA::Transaction::commit() ()
#19 0x2f8e054c in CA::Transaction::observer_callback(__CFRunLoopObserver*, unsigned long, void*) ()
#20 0x2d4abf68 in __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ ()
#21 0x2d4a98f6 in __CFRunLoopDoObservers ()
#22 0x2d4a9c42 in __CFRunLoopRun ()
#23 0x2d414470 in CFRunLoopRunSpecific ()
#24 0x2d414252 in CFRunLoopRunInMode ()
#25 0x321482ea in GSEventRunModal ()
#26 0x2fcc9844 in UIApplicationMain ()
#27 0x00124cf4 in main at /Users/shawn/Documents/TruthIt/TruthIOS/TruthiOS/TruthiOS/main.m:16

好的,谢谢 rmaddy 的想法,我认为您正在做某事,但我仍然没有完全理解。我(愚蠢地知道,我在这里匆忙编码)有一个 UILabel 定义为名称标题。我将其更改为 questionTitle,现在我收到了一个不同的错误 - [UILabel copyWithZone] 无法识别的选择器发送到实例,这里再次是堆栈跟踪:

    Thread 1, Queue : com.apple.main-thread
#0  0x378416a0 in objc_exception_throw ()
#1  0x2d4e47b6 in -[NSObject(NSObject) doesNotRecognizeSelector:] ()
#2  0x2d4e30ae in ___forwarding___ ()
#3  0x2d431dc8 in __forwarding_prep_0___ ()
#4  0x2fcfb9a8 in -[UIViewController setTitle:] ()
#5  0x2de203b6 in -[NSObject(NSKeyValueCoding) setValue:forKey:] ()
#6  0x2de31ffc in -[NSObject(NSKeyValueCoding) setValue:forKeyPath:] ()
#7  0x2d4507e8 in -[NSArray makeObjectsPerformSelector:] ()
#8  0x2ffc44de in -[UINib instantiateWithOwner:options:] ()
#9  0x2ff260fa in -[UIViewController _loadViewFromNibNamed:bundle:] ()
#10 0x2fd87b58 in -[UIViewController loadView] ()
#11 0x2fc6979c in -[UIViewController loadViewIfRequired] ()
#12 0x2fc69718 in -[UIViewController view] ()
#13 0x2fdf5c2a in -[UINavigationController _startCustomTransition:] ()
#14 0x2fd13a16 in -[UINavigationController _startDeferredTransitionIfNeeded:] ()
#15 0x2fd13820 in -[UINavigationController __viewWillLayoutSubviews] ()
#16 0x2fd137b8 in -[UILayoutContainerView layoutSubviews] ()
#17 0x2fc65352 in -[UIView(CALayerDelegate) layoutSublayersOfLayer:] ()
#18 0x2f8eb942 in -[CALayer layoutSublayers] ()
#19 0x2f8e7166 in CA::Layer::layout_if_needed(CA::Transaction*) ()
#20 0x2f8e6ff8 in CA::Layer::layout_and_display_if_needed(CA::Transaction*) ()
#21 0x2f8e6a0c in CA::Context::commit_transaction(CA::Transaction*) ()
#22 0x2f8e681e in CA::Transaction::commit() ()
#23 0x2f8e054c in CA::Transaction::observer_callback(__CFRunLoopObserver*, unsigned long, void*) ()
#24 0x2d4abf68 in __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ ()
#25 0x2d4a98f6 in __CFRunLoopDoObservers ()
#26 0x2d4a9c42 in __CFRunLoopRun ()
#27 0x2d414470 in CFRunLoopRunSpecific ()
#28 0x2d414252 in CFRunLoopRunInMode ()
#29 0x321482ea in GSEventRunModal ()
#30 0x2fcc9844 in UIApplicationMain ()
#31 0x0008cccc in main at /Users/shawn/Documents/TruthIt/TruthIOS/TruthiOS/TruthiOS/main.m:16

最佳答案

从堆栈跟踪来看,您似乎正在尝试使用 initWithTitle: 创建一个新的导航项,但您将 UILabel 传递给初始化程序而不是 NSString。也许您想将标签的值传递给初始化程序?检查

[CSUtility addleftButtonToNavItem:rightButton:background:rightButtonTitle:forViewController:revealViewController:overrideLeft:] at /Users/shawn/Documents/TruthIt/TruthIOS/TruthiOS/TruthiOS/CSUtility.m:59

关于iOS 在设置导航项时崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20208494/

有关iOS 在设置导航项时崩溃的更多相关文章

  1. ruby - 使用 RubyZip 生成 ZIP 文件时设置压缩级别 - 2

    我有一个Ruby程序,它使用rubyzip压缩XML文件的目录树。gem。我的问题是文件开始变得很重,我想提高压缩级别,因为压缩时间不是问题。我在rubyzipdocumentation中找不到一种为创建的ZIP文件指定压缩级别的方法。有人知道如何更改此设置吗?是否有另一个允许指定压缩级别的Ruby库? 最佳答案 这是我通过查看ruby​​zip内部创建的代码。level=Zlib::BEST_COMPRESSIONZip::ZipOutputStream.open(zip_file)do|zip|Dir.glob("**/*")d

  2. ruby-openid:执行发现时未设置@socket - 2

    我在使用omniauth/openid时遇到了一些麻烦。在尝试进行身份验证时,我在日志中发现了这一点:OpenID::FetchingError:Errorfetchinghttps://www.google.com/accounts/o8/.well-known/host-meta?hd=profiles.google.com%2Fmy_username:undefinedmethod`io'fornil:NilClass重要的是undefinedmethodio'fornil:NilClass来自openid/fetchers.rb,在下面的代码片段中:moduleNetclass

  3. ruby - 检查 "command"的输出应该包含 NilClass 的意外崩溃 - 2

    为了将Cucumber用于命令行脚本,我按照提供的说明安装了arubagem。它在我的Gemfile中,我可以验证是否安装了正确的版本并且我已经包含了require'aruba/cucumber'在'features/env.rb'中为了确保它能正常工作,我写了以下场景:@announceScenario:Testingcucumber/arubaGivenablankslateThentheoutputfrom"ls-la"shouldcontain"drw"假设事情应该失败。它确实失败了,但失败的原因是错误的:@announceScenario:Testingcucumber/ar

  4. ruby-on-rails - 如何使用 instance_variable_set 正确设置实例变量? - 2

    我正在查看instance_variable_set的文档并看到给出的示例代码是这样做的:obj.instance_variable_set(:@instnc_var,"valuefortheinstancevariable")然后允许您在类的任何实例方法中以@instnc_var的形式访问该变量。我想知道为什么在@instnc_var之前需要一个冒号:。冒号有什么作用? 最佳答案 我的第一直觉是告诉你不要使用instance_variable_set除非你真的知道你用它做什么。它本质上是一种元编程工具或绕过实例变量可见性的黑客攻击

  5. Ruby Readline 在向上箭头上使控制台崩溃 - 2

    当我在Rails控制台中按向上或向左箭头时,出现此错误:irb(main):001:0>/Users/me/.rvm/gems/ruby-2.0.0-p247/gems/rb-readline-0.4.2/lib/rbreadline.rb:4269:in`blockin_rl_dispatch_subseq':invalidbytesequenceinUTF-8(ArgumentError)我使用rvm来管理我的ruby​​安装。我正在使用=>ruby-2.0.0-p247[x86_64]我使用bundle来管理我的gem,并且我有rb-readline(0.4.2)(人们推荐的最少

  6. ruby-on-rails - date_field_tag,如何设置默认日期? [ rails 上的 ruby ] - 2

    我想设置一个默认日期,例如实际日期,我该如何设置?还有如何在组合框中设置默认值顺便问一下,date_field_tag和date_field之间有什么区别? 最佳答案 试试这个:将默认日期作为第二个参数传递。youcorrectlysetthedefaultvalueofcomboboxasshowninyourquestion. 关于ruby-on-rails-date_field_tag,如何设置默认日期?[rails上的ruby],我们在StackOverflow上找到一个类似的问

  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 文件 IO 定界符? - 2

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

  9. ruby-on-rails - 在 Rails 开发环境中为 .ogv 文件设置 Mime 类型 - 2

    我正在玩HTML5视频并且在ERB中有以下片段:mp4视频从在我的开发环境中运行的服务器很好地流式传输到chrome。然而firefox显示带有海报图像的视频播放器,但带有一个大X。问题似乎是mongrel不确定ogv扩展的mime类型,并且只返回text/plain,如curl所示:$curl-Ihttp://0.0.0.0:3000/pr6.ogvHTTP/1.1200OKConnection:closeDate:Mon,19Apr201012:33:50GMTLast-Modified:Sun,18Apr201012:46:07GMTContent-Type:text/plain

  10. ruby-on-rails - 有没有办法为 CarrierWave/Fog 设置上传进度指示器? - 2

    我在Rails应用程序中使用CarrierWave/Fog将视频上传到AmazonS3。有没有办法判断上传的进度,让我可以显示上传进度如何? 最佳答案 CarrierWave和Fog本身没有这种功能;你需要一个前端uploader来显示进度。当我不得不解决这个问题时,我使用了jQueryfileupload因为我的堆栈中已经有jQuery。甚至还有apostonCarrierWaveintegration因此您只需按照那里的说明操作即可获得适用于您的应用的进度条。 关于ruby-on-r

随机推荐