我有一个用Swift 3.2和用xcode 10构建的Objective-c部分编写的应用程序,我在一些Swift ViewController中遇到了奇怪的崩溃,在我收集的日志中,崩溃的行是发生了什么我正在UILabel上设置文本(valueLabel.text =“-”)(UILabel是一种普通的无继承或自定义选项)。
Fatal Exception: NSInvalidArgumentException
0 CoreFoundation 0x212368ec4 __exceptionPreprocess
1 libobjc.A.dylib 0x211539a40 objc_exception_throw
2 CoreFoundation 0x21226f594 -[NSCache init]
3 UIKitCore 0x23f14fba0 (Missing)
4 UIKitCore 0x23f14fc3c (Missing)
5 UIFoundation 0x21c9ca778 attributeDictionaryHash
6 Foundation 0x212dc8074 hashProbe
7 Foundation 0x212ce5c24 -[NSConcreteHashTable getItem:]
8 UIFoundation 0x21c975548 +[NSAttributeDictionary newWithDictionary:]
9 UIFoundation 0x21c9778e4 -[_NSCachedAttributedString initWithString:attributes:]
10 UIFoundation 0x21c9e5b98 __NSStringDrawingEngine
11 UIFoundation 0x21c9697e4 -[NSString(NSExtendedStringDrawing) boundingRectWithSize:options:attributes:context:]
12 UIKitCore 0x23f90c9a0 (Missing)
18 ole-consignado 0x100e336ac $S14test_app18CardViewControllerC11resetLayout33_2E2D3FEF56CDB4998F73949398E4FE67LLyyF (CardViewController.swift:103)
19 ole-consignado 0x100e327b4 $S14test_app18CardViewControllerC17viewWillDisappearyySbF (CardViewController.swift:73)
20 ole-consignado 0x100e32804 $S14test_app18CardViewControllerC17viewWillDisappearyySbFTo (<compiler-generated>)
21 UIKitCore 0x23ef39068 (Missing)
43 CoreFoundation 0x2122f87cc __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__
44 CoreFoundation 0x2122f3460 __CFRunLoopDoObservers
45 CoreFoundation 0x2122f3a00 __CFRunLoopRun
46 CoreFoundation 0x2122f31f0 CFRunLoopRunSpecific
47 GraphicsServices 0x21456c584 GSEventRunModal
48 UIKitCore 0x23f4fad40 (Missing)
49 ole-consignado 0x100b37f74 main (main.m:14)
50 libdyld.dylib 0x211db2bb4 start
所以我的问题是,有人曾经遇到过崩溃并提出解决建议吗?
答案 0 :(得分:2)
每当您通过 UIColor.init
实例化 UIColor 时,都会生成一个 UIPlaceholderColor 实例,该实例不带任何参数。关于这一点的事情是它在 UIKit 的语义中完全有效,并导致它可能显示为 UIColor.clear
。
突破点是尝试将其与 CoreGraphics 语义一起使用。 UIPlaceholderColor 的底层存储不具有颜色空间和任何颜色值存储,因此无法使用 cgColor
getter 将其转换为 CGColor。 hash
getter 也是一样。
您如何解决这种情况?确定您在何处调用 UIColor.init
并将其替换为 UIColor.clear
,这将很容易转换为 CGColor。