ios – PHILIPS HUE APPLE SDK的问题

前端之家收集整理的这篇文章主要介绍了ios – PHILIPS HUE APPLE SDK的问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚刚写了五行代码,应用程序崩溃.我检查了很多次,但我无法跟踪代码中的错误.

我已经添加了框架.没有警告没有错误,但为什么死的应用程序崩溃:

#import "ViewController.h"
#import <HueSDK_iOS/HueSDK.h>

@interface ViewController ()

@property (strong,nonatomic) PHHueSDK *phHueSDK;
@property (nonatomic,strong) PHBridgeSearching *bridgeSearch;

@end

@implementation ViewController

- (void)viewDidLoad {
  [super viewDidLoad];

  self.phHueSDK = [[PHHueSDK alloc] init]; //Line 1

  [self.phHueSDK enableLogging:YES]; //Line 2

  [self.phHueSDK startUpSDK]; //Line 3

  self.bridgeSearch = [[PHBridgeSearching alloc] initWithUpnpSearch:YES andPortalSearch:YES andIpAdressSearch:YES]; //Line 4

// Start search for bridges
[self.bridgeSearch startSearchWithCompletionHandler:^(NSDictionary *bridgesFound) {
    // Search is complete,handle results (dictionary contains IP and mac addresses of bridges found)
}]; Line 5

}
@end

崩溃日志为…

2015-04-23 17:15:58.750 FreshHUE[8298:161234] -[__NSCFString objectFromJSONString]: unrecognized selector sent to instance 0x7fb9fa547d60
2015-04-23 17:15:58.849 FreshHUE[8298:161234] *** Terminating app due to uncaught exception 'NSInvalidArgumentException',reason: '-[__NSCFString objectFromJSONString]: unrecognized selector sent to instance 0x7fb9fa547d60'
*** First throw call stack:
(
        0   CoreFoundation                      0x0000000106512c65 __exceptionPreprocess + 165
        1   libobjc.A.dylib                     0x00000001061a9bb7 objc_exception_throw + 45
        2   CoreFoundation                      0x000000010651a0ad -[NSObject(NSObject) doesNotRecognizeSelector:] + 205
        3   CoreFoundation                      0x000000010647013c ___forwarding___ + 988
        4   CoreFoundation                      0x000000010646fcd8 _CF_forwarding_prep_0 + 120
        5   FreshHUE                            0x0000000105c01cdd __38-[PHBridgeSearching startPortalSearch]_block_invoke + 332
        6   FreshHUE                            0x0000000105c006ac -[PHHttpRequester connectionDidFinishLoading:] + 101
        7   CFNetwork                           0x000000010859c0bc __65-[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:]_block_invoke + 69
        8   CFNetwork                           0x000000010859c060 -[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:] + 199
        9   CFNetwork                           0x000000010859c1c7 -[NSURLConnectionInternal _withActiveConnectionAndDelegate:] + 48
        10  CFNetwork                           0x000000010846b757 ___ZN27URLConnectionClient_Classic26_delegate_didFinishLoadingEU13block_pointerFvvE_block_invoke + 107
        11  CFNetwork                           0x0000000108538de1 ___ZN27URLConnectionClient_Classic18_withDelegateAsyncEPKcU13block_pointerFvP16_CFURLConnectionPK33CFURLConnectionClientCurrent_VMaxE_block_invoke_2 + 273
        12  CFNetwork                           0x0000000108456a26 _ZN19RunloopBlockContext13_invoke_blockEPKvPv + 72
        13  CoreFoundation                      0x0000000106419354 CFArrayApplyFunction + 68
        14  CFNetwork                           0x00000001084568e7 _ZN19RunloopBlockContext7performEv + 133
        15  CFNetwork                           0x0000000108456726 _ZN17MultiplexerSource7performEv + 256
        16  CFNetwork                           0x000000010845653c _ZN17MultiplexerSource8_performEPv + 72
        17  CoreFoundation                      0x0000000106446431 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
        18  CoreFoundation                      0x000000010643c2fd __CFRunLoopDoSources0 + 269
        19  CoreFoundation                      0x000000010643b934 __CFRunLoopRun + 868
        20  CoreFoundation                      0x000000010643b366 CFRunLoopRunSpecific + 470
        21  Foundation                          0x0000000105d5ef92 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 275
        22  FreshHUE                            0x0000000105c00fc7 __32-[PHBridgeSearching startSearch]_block_invoke + 253
        23  libdispatch.dylib                   0x0000000108cd0186 _dispatch_call_block_and_release + 12
        24  libdispatch.dylib                   0x0000000108cef614 _dispatch_client_callout + 8
        25  libdispatch.dylib                   0x0000000108cd9552 _dispatch_root_queue_drain + 1768
        26  libdispatch.dylib                   0x0000000108cdab17 _dispatch_worker_thread3 + 111
        27  libsystem_pthread.dylib             0x00000001090746cb _pthread_wqthread + 729
        28  libsystem_pthread.dylib             0x00000001090724a1 start_wqthread + 13
)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb)

更新问题

当我将第4行改为(将门户搜索设置为no)时,我的应用程序运行正常.但是我想要Portal搜索,为什么会发生这种情况

self.bridgeSearch = [[PHBridgeSearching alloc] initWithUpnpSearch:YES andPortalSearch:NO andIpAdressSearch:YES]; //Line 4

解决方法

在PHILIPS提供的示例应用程序中花了整整一个晚上,我可以找到错误.

在PHILIPS HUE的官方文档中,他们没有提到我们必须添加-ObjC链接器标志

添加-ObjC链接器标志解决我的问题

原文链接:https://www.f2er.com/iOS/337193.html

猜你在找的iOS相关文章