- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在开发一个 iOS 应用程序,它具有使用 UISearchController
为国家列表提供搜索功能的功能。直到最后一个版本,一切正常。但是现在,在应用程序中添加了一些新功能后,我遇到了一个导致应用程序崩溃的奇怪错误。每次我尝试调用 UISearchController(searchResultsController:nil)
时,我的应用程序都会崩溃,原因是 [UIView setImage:]: unrecognized selector sent to instance
。我追溯了以前发布的所有以前的提交,直到现在,但仍然没有找到罪魁祸首。我想就如何调试这个问题提出建议,因为我无法调试到 UISearchController
初始化自身。
注意 我没有提供一些代码片段,因为我觉得它没有必要,我尝试了几种方法,包括在另一个地方调用 UISearchController(searchResultsController:nil)
,删除UISearchController
的使用,删除了一些可疑的扩展......以确保 swift 没有给我另一个错误的崩溃报告
编辑 我的应用程序的目标版本是 8.0,我在 XCode 7.3.1、MacOS El Capitan 上使用 swift 2.2
EDIT 2 我尝试切换到 [[UISearchDisplayController alloc] initWithSearchBar:searchBar contentsController:self];
但不幸的是,仍然因为同样的原因而崩溃。
编辑 3 来自 Crashlytics 的崩溃日志:
Fatal Exception: NSInvalidArgumentException
0 CoreFoundation 0x181ec2db0 __exceptionPreprocess
1 libobjc.A.dylib 0x181527f80 objc_exception_throw
2 CoreFoundation 0x181ec9c4c __methodDescriptionForSelector
3 CoreFoundation 0x181ec6bec ___forwarding___
4 CoreFoundation 0x181dc4c5c _CF_forwarding_prep_0
5 UIKit 0x18710f9d0 -[UISearchBar(UISearchBarStatic) _updateMagnifyingGlassView]
6 UIKit 0x18710d778 -[UISearchBar(UISearchBarStatic) _setupSearchField]
7 UIKit 0x18719d2c8 -[UISearchBar searchField]
8 UIKit 0x187114684 -[UISearchBar setPlaceholder:]
9 UIKit 0x1879c0d3c -[UISearchController _commonInit]
10 UIKit 0x1879c10cc -[UISearchController initWithSearchResultsController:]
11 EMCCountryPickerController 0x100bda6e8 -[EMCCountryPickerController loadView] (EMCCountryPickerController.m:136)
12 UIKit 0x1870208ec -[UIViewController loadViewIfRequired]
13 UIKit 0x187020844 -[UIViewController view]
14 UIKit 0x18790f450 -[_UIFullscreenPresentationController _setPresentedViewController:]
15 UIKit 0x18737cd90 -[UIPresentationController initWithPresentedViewController:presentingViewController:]
16 UIKit 0x1873a2af4 -[UIViewController _presentViewController:withAnimationController:completion:]
17 UIKit 0x1873a5890 -[UIViewController _performCoordinatedPresentOrDismiss:animated:]
18 UIKit 0x18711b3cc -[UIViewController presentViewController:animated:completion:]
19 UIKit 0x193c3084c -[UIViewControllerAccessibility presentViewController:animated:completion:]
20 bluebird-ios 0x10012e244 CountryPicker.didTapOnView() -> () (CountryPicker.swift:132)
21 bluebird-ios 0x10012e29c @objc CountryPicker.didTapOnView() -> () (CountryPicker.swift)
22 UIKit 0x1875b1f30 _UIGestureRecognizerSendTargetActions
23 UIKit 0x1871c6728 _UIGestureRecognizerSendActions
24 UIKit 0x1870537a0 -[UIGestureRecognizer _updateGestureWithEvent:buttonEvent:]
25 UIKit 0x1875b3530 ___UIGestureRecognizerUpdate_block_invoke898
26 UIKit 0x1870124d8 _UIGestureRecognizerRemoveObjectsFromArrayAndApplyBlocks
27 UIKit 0x18700f254 _UIGestureRecognizerUpdate
28 UIKit 0x187051610 -[UIWindow _sendGesturesForEvent:]
29 UIKit 0x187050c0c -[UIWindow sendEvent:]
30 UIKit 0x18702104c -[UIApplication sendEvent:]
31 UIKit 0x193c0545c -[UIApplicationAccessibility sendEvent:]
32 UIKit 0x18701f628 _UIApplicationHandleEventQueue
33 CoreFoundation 0x181e7909c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__
34 CoreFoundation 0x181e78b30 __CFRunLoopDoSources0
35 CoreFoundation 0x181e76830 __CFRunLoopRun
36 CoreFoundation 0x181da0c50 CFRunLoopRunSpecific
37 GraphicsServices 0x183688088 GSEventRunModal
38 UIKit 0x18708a088 UIApplicationMain
39 bluebird-ios 0x100225a3c main (AppDelegate.swift:13)
40 libdispatch.dylib 0x18193e8b8 (Missing)
最佳答案
问题已解决
根本原因是因为在 Initialize
上,UISearchBar
将调用 _updateMagnifyingGlassView
将放大图像设置为其 UITextField 的左 View
。在我的代码中,我有以下扩展名:
extension UITextField {
@IBInspectable var paddingLeft: CGFloat {
get {
return self.leftView?.frame.width ?? 0
} set {
let paddingView = UIView(frame: CGRectMake(0, 0, newValue, self.frame.height))
self.leftView = paddingView
self.leftViewMode = .Always
}
}
}
请注意 paddingLeft
属性不是可选属性,这将导致 UITextField
将 0
设置为此属性的默认值,从而创建一个宽度为 0 的 View ,并通过 setter 方法分配给 leftView
。这会导致 UISearchBar
在调用 _updateMagnifyingGlassView
时崩溃,如您在上面的崩溃日志中所见。
结论
使用扩展时要小心,尤其是当它会修改现有 UIKit 控件的默认行为时
关于ios - [UIView setImage :]: unrecognized selector sent to instance when init UISearchController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38749894/
我可以同步我的 Gmail 收件箱,但发送的文件夹不起作用。 这是我的 .mbsyncrc IMAPStore martinstabenfeldt-remote Account martins
我正在尝试从 nodeJS 发送电子邮件(使用 nodemailer 库),目前我在整个邮寄过程中遇到了一些超时问题。那不是我需要帮助的问题。我确实需要帮助的问题是,当它到达日志记录部分时,成功将为空
我在 WordPress 模板中使用 Contact Form 7 插件。我创建了表单和相关的 CSS,所以一切正常。当我单击发送按钮并成功发送电子邮件时,我需要执行以下操作。表单应该消失并显示“已发
我正在从辅助角色向服务总线队列发送消息。我注意到一些消息会随机丢失。 当我调试时,我在 Send 方法之后设置了一个断点,并登录到我的 Azure 面板以检查消息队列是否增加。我发现奇怪的是,有时消息
我是网站安全的新手,目前正在尝试深入了解同源策略。虽然在 stackoverflow 和其他地方有关于 SOP 概念的非常好的帖子,但我找不到关于 chrome 和其他浏览器是否允许跨域 XHR po
我正在从官方文档中学习 Solidity,并在我创建简单硬币的练习中进行堆栈: pragma solidity ^0.4.20; // should actually be 0.4.21 con
我们有一个需求,其中服务器需要将数据推送到各个客户端。所以我们继续使用 SSE(服务器发送事件)。我浏览了文档,但仍然不清楚这个概念。我有以下疑问: 场景 1。假设有 10 个客户。所以所有 10 个
我对 javascript/jquery 缺乏经验。我正在阅读 http://api.jquery.com/mouseover/ 的文档其中指出: The mouseover event is sen
所以我理解服务器发送事件的概念( EventSource ): 客户端通过 EventSource 连接到端点 客户端只监听从端点发送的消息 我感到困惑的是它在服务器上的工作方式。我看过不同的例子,但
我看过 here和 there尝试弄清楚服务器发送的事件是在传输级别。我还不确定。 两个消息来源都声称它们“只是 http”。然而,至少有两种方式可以解释这样的陈述。 当我第一次阅读那些文章时,我假设
我正在尝试使用 PHPMailer 在我的网站上创建联系表单。我在设置时遇到一些问题。我正在尝试使用 G-mail 作为我的 smtp 主机。我想知道是否有人可以帮助解决这个问题? 这是我的邮件代码:
我有一个大约 150 封电子邮件的文件夹,全部保存为 HTML 文件(Firefox 扩展),并且我需要捕获始终在“已发送”行中找到的年份;如下图所示。 我尝试使用 RegEx 但失败了;它根本不会打
我正在 Swift 中基于 NSObject 开发自定义类。它是一个状态菜单图标/菜单助手。当我收到在自定义类中单击图标的事件时,我想以 NSButton 允许创建 IBAction 来响应用户单击按
我尝试使用 MPI 对矩阵求和来执行此操作,我不知道为什么,但我无法使用 MPI_Send 发送任何类型的数据,但无论我在尝试什么我会收到一条错误消息吗: Sending 3 rows to task
我正在开发一个简单的收件箱/下午系统,我不明白为什么,但我可以显示已发送消息的显示,我可以显示已发送项目的列表,从收件箱查看下午消息,但不能确定我做错了什么,任何提示表示赞赏.. 这是我的代码:
我正在尝试在内容脚本和扩展程序之间传递消息 这是我在内容脚本中的内容 chrome.runtime.sendMessage({type: "getUrls"}, function(response)
我正在尝试将一段分成几个词。我手边有可爱的 nltk.tokenize.word_tokenize(sent),但是 help(word_tokenize) 说,“这个分词器被设计为一次处理一个句子。
我在从设备读取 SMS 消息时遇到问题。获取 URI content://sms/inbox 的内容提供者时,一切都很好。我可以阅读 person 列以在 people 表中找到外键并最终到达联系人及
我知道这个网站上有类似的问题,我已经尝试了一些建议的解决方案,其中一些对之前提出这个问题的人有效。但是,我仍然收到发送两次而不是一次的相同数据。 这是代码: final ProgressDialog
当做programmatic file upload时使用jQuery-File-Upload plugin启用分块后,我无法发送多个文件。 我调用电话的方式如下: fileUploadWidget.
我是一名优秀的程序员,十分优秀!