快速代码崩溃:“发送到实例的无法识别的选择器”

Posted

技术标签:

【中文标题】快速代码崩溃:“发送到实例的无法识别的选择器”【英文标题】:crash in swift code: "unrecognized selector sent to instance" 【发布时间】:2017-04-12 18:50:52 【问题描述】:

我正在尝试编写一个发出 HTTP 请求的命令行 Swift 应用程序。作为旁注,我想为应用程序的run func 提供一个会话,以便我可以使用依赖注入对代码进行单元测试(因此我定义了协议)。

这会因“发送到实例的选择器无法识别”而崩溃。这是什么意思?

//
//  main.swift
//  MockIt
//
//

import Foundation

public protocol URLSessionProtocol 
    func synchronousDataTask( _ url: URL ) -> ( Data?, URLResponse?, Error? )


class MyUrlSession : URLSession, URLSessionProtocol 

    func synchronousDataTask( _ url: URL ) -> ( Data?, URLResponse?, Error? ) 
        var data: Data?
        var response: URLResponse?
        var error: Error?

        let semaphore = DispatchSemaphore(value: 0)

        let dataTask = self.dataTask(with: url) 
            data = $0
            response = $1
            error = $2

            semaphore.signal()
        
        dataTask.resume()

        _ = semaphore.wait(timeout: .distantFuture)

        return (data, response, error)
    



class MyModule 
    func run( _ session: URLSessionProtocol, _ urlString: String ) 
        let url = URL(string: urlString)
        let ( _, response, _ ) =
            session.synchronousDataTask(url!)
        print( response! )
    



MyModule().run( MyUrlSession(), "https://myapiendpoint.com" )

完整的崩溃在这里:

2017-04-12 11:29:07.930076 MockIt[33267:1871173] -[MockIt.MyUrlSession dataTaskForRequest:completion:]: unrecognized selector sent to instance 0x100a043d0
2017-04-12 11:29:07.933897 MockIt[33267:1871173] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[MockIt.MyUrlSession dataTaskForRequest:completion:]: unrecognized selector sent to instance 0x100a043d0'
*** First throw call stack:
(
    0   CoreFoundation                      0x00007fff785dfe7b __exceptionPreprocess + 171
    1   libobjc.A.dylib                     0x00007fff8d1c0cad objc_exception_throw + 48
    2   CoreFoundation                      0x00007fff78661cb4 -[NSObject(NSObject) doesNotRecognizeSelector:] + 132
    3   CoreFoundation                      0x00007fff78551fb5 ___forwarding___ + 1061
    4   CoreFoundation                      0x00007fff78551b08 _CF_forwarding_prep_0 + 120
    5   MockIt                              0x000000010000177d _TFC6MockIt12MyUrlSession19synchronousDataTaskfV10Foundation3URLTGSqVS1_4Data_GSqCSo11URLResponse_GSqPs5Error___ + 477
    6   MockIt                              0x0000000100001bf8 _TTWC6MockIt12MyUrlSessionS_18URLSessionProtocolS_FS1_19synchronousDataTaskfV10Foundation3URLTGSqVS2_4Data_GSqCSo11URLResponse_GSqPs5Error___ + 72
    7   MockIt                              0x0000000100001d1d _TFC6MockIt8MyModule3runfTPS_18URLSessionProtocol_SS_T_ + 253
    8   MockIt                              0x0000000100001584 main + 116
    9   libdyld.dylib                       0x00007fff8daa4255 start + 1
    10  ???                                 0x0000000000000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb) 

不确定是否重要,但这是我的应用目录的一般结构:

$ tree -L 2
.
├── DerivedData
│   ├── Build
│   ├── MockIt
│   └── ModuleCache
├── MockIt
├── MockIt-Bridging-Header.h
├── MockIt.xcodeproj
│   ├── project.pbxproj
│   ├── project.xcworkspace
│   └── xcuserdata
├── MockItTest
│   ├── Info.plist
│   └── MockItTest.swift
└── main.swift

【问题讨论】:

【参考方案1】:

URLSession 不是为子类而设计的。

我认为您看到的问题源于您没有完全初始化 URLSession 子类。您正在调用init(),而URLSession 意味着通过init(configuration:) 至少使用一个配置对象进行初始化。

您不能从子类中自己调用这些初始化程序,因为它们已被特别标记为不可继承。

您不能自己分配配置属性,因为它是只读的。

您也许可以通过覆盖该属性来欺骗您,但几乎可以肯定,最好不要继承 URLSession。您是否考虑过将此作为扩展?

this question 有更多信息。

【讨论】:

以上是关于快速代码崩溃:“发送到实例的无法识别的选择器”的主要内容,如果未能解决你的问题,请参考以下文章

[UIBarButtonItem _isAncestorOfFirstResponder]:发送到实例的无法识别的选择器

[NSCFArray 长度]:发送到实例的无法识别的选择器

AppDelegate - 发送到实例的无法识别的选择器[关闭]

使用 NSTimer 时发送到实例的无法识别的选择器

[__NSArrayI 长度]:发送到实例的无法识别的选择器

-[XBMessage messageHash]:发送到实例的无法识别的选择器