2017-03-25 1 views
2

현재 앱을 만들고 있는데 Xcode 8.2 베타와 함께 Swft 3을 사용하고 있습니다. 사용자가 내 iOS 프로젝트의 SWRevealViewController에서 소셜 미디어에 액세스 할 수 있도록하기 위해 노력 중입니다. 소셜 미디어 버튼을 클릭하면 해당 앱을 열어야합니다. 그러나 코드가 실행되고 iOS 시뮬레이터가 열리면 SWRevealViewController (메뉴)를 열려고 슬라이드하면 앱이 다운됩니다.소셜 미디어 앱스 버튼이 작동하지 않습니다 - Swift

전체 오류 메시지 : 여기

*** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<TheGunnOracleApp.SocialMedia 0x7ffd0d50c0d0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key dataSource.' 
*** First throw call stack: 
(
    0 CoreFoundation      0x000000010212dd4b __exceptionPreprocess + 171 
    1 libobjc.A.dylib      0x0000000101b8f21e objc_exception_throw + 48 
    2 CoreFoundation      0x000000010212dc99 -[NSException raise] + 9 
    3 Foundation       0x000000010169db3f -[NSObject(NSKeyValueCoding) setValue:forKey:] + 291 
    4 UIKit        0x0000000102e8e99f -[UIViewController setValue:forKey:] + 88 
    5 UIKit        0x0000000103102c6e -[UIRuntimeOutletConnection connect] + 109 
    6 CoreFoundation      0x00000001020d2b60 -[NSArray makeObjectsPerformSelector:] + 256 
    7 UIKit        0x00000001031015f2 -[UINib instantiateWithOwner:options:] + 1867 
    8 UIKit        0x0000000102e950d1 -[UIViewController _loadViewFromNibNamed:bundle:] + 386 
    9 UIKit        0x0000000102e959f3 -[UIViewController loadView] + 177 
    10 UIKit        0x000000010311561c -[UITableViewController loadView] + 84 
    11 UIKit        0x0000000102e95d28 -[UIViewController loadViewIfRequired] + 201 
    12 UIKit        0x0000000102e9657c -[UIViewController view] + 27 
    13 TheGunnOracleApp     0x00000001014d50fb -[SWRevealViewController _deployForViewController:inView:] + 235 
    14 TheGunnOracleApp     0x00000001014d4f58 -[SWRevealViewController _deploymentForViewController:inView:appear:disappear:] + 136 
    15 TheGunnOracleApp     0x00000001014d48c1 -[SWRevealViewController _rearViewDeploymentForNewFrontViewPosition:] + 433 
    16 TheGunnOracleApp     0x00000001014d32f2 -[SWRevealViewController _setFrontViewPosition:withDuration:] + 82 
    17 TheGunnOracleApp     0x00000001014d26c6 __65-[SWRevealViewController _dispatchSetFrontViewPosition:animated:]_block_invoke + 70 
    18 TheGunnOracleApp     0x00000001014d1300 -[SWRevealViewController _enqueueBlock:] + 160 
    19 TheGunnOracleApp     0x00000001014d261b -[SWRevealViewController _dispatchSetFrontViewPosition:animated:] + 251 
    20 TheGunnOracleApp     0x00000001014d0154 -[SWRevealViewController setFrontViewPosition:animated:] + 148 
    21 TheGunnOracleApp     0x00000001014cffed -[SWRevealViewController revealToggleAnimated:] + 93 
    22 TheGunnOracleApp     0x00000001014d05df -[SWRevealViewController revealToggle:] + 63 
    23 UIKit        0x0000000102cf645c -[UIApplication sendAction:to:from:forEvent:] + 83 
    24 UIKit        0x0000000103137971 -[UIBarButtonItem(UIInternal) _sendAction:withEvent:] + 149 
    25 UIKit        0x0000000102cf645c -[UIApplication sendAction:to:from:forEvent:] + 83 
    26 UIKit        0x0000000102e7c344 -[UIControl sendAction:to:forEvent:] + 67 
    27 UIKit        0x0000000102e7c65d -[UIControl _sendActionsForEvents:withEvent:] + 444 
    28 UIKit        0x0000000102e7c7e7 -[UIControl _sendActionsForEvents:withEvent:] + 838 
    29 UIKit        0x0000000102e7b559 -[UIControl touchesEnded:withEvent:] + 668 
    30 UIKit        0x0000000102d63d5d -[UIWindow _sendTouchesForEvent:] + 2747 
    31 UIKit        0x0000000102d6544b -[UIWindow sendEvent:] + 4011 
    32 UIKit        0x0000000102d1254b -[UIApplication sendEvent:] + 371 
    33 UIKit        0x00000001034fda0f __dispatchPreprocessedEventFromEventQueue + 3248 
    34 UIKit        0x00000001034f6745 __handleEventQueue + 4879 
    35 CoreFoundation      0x00000001020d28e1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 
    36 CoreFoundation      0x00000001020b7b0c __CFRunLoopDoSources0 + 556 
    37 CoreFoundation      0x00000001020b6ff6 __CFRunLoopRun + 918 
    38 CoreFoundation      0x00000001020b6a04 CFRunLoopRunSpecific + 420 
    39 GraphicsServices     0x0000000107e37a6f GSEventRunModal + 161 
    40 UIKit        0x0000000102cf4808 UIApplicationMain + 159 
    41 TheGunnOracleApp     0x00000001014f2d0f main + 111 
    42 libdyld.dylib      0x0000000105ddd68d start + 1 
) 
libc++abi.dylib: terminating with uncaught exception of type NSException 
(lldb) 

는 소셜 미디어의 각 버튼에 대한 코드입니다.

참고 :

SocialMedia : 여기

import Foundation 
import UIKit 

class SocialMedia: UITableViewController{ 
    @IBAction func facebookOpen(_ sender: Any) { 
     UIApplication.shared.open(NSURL(string: "https://www.facebook.com/gunnoracle")! as URL) 
    } 
} 

내 Main.storyboard있는 UITableViewController의 모습의 스크린 샷입니다 : 내가하지 처음 작업 때문에 페이스 북의 소셜 미디어의 나머지 부분에 대한 코드를 제거

+0

오류에 대한 질문을 게시하는 경우 오류의 원인이되는 정확한 코드 줄뿐만 아니라 질문에 완전하고 정확한 오류 메시지를 포함시켜야합니다. – rmaddy

+0

관련이 없지만 Swift에서 왜 'NSURL'을 사용하고 있습니까? 그냥'URL'을 사용하십시오. – rmaddy

+0

@rmaddy 팁 주셔서 감사합니다. 오류 메시지가 추가됩니다. –

답변

0

방금 ​​시도 했으므로이 코드 줄로 인해 문제가 발생하지 않은 것으로 보입니다.

SWRevealViewController (메뉴)를 열려고 슬라이드하면 앱이 다운됩니다.

이것은 원인 일 수 있습니다. SWRevealViewController를 사용하는 방법에 문제가 있습니다.

+1

SocialMedia 클래스를 포함하지 않을 경우 SWRevealViewController의 열림이 잘됩니다. –

+0

SWRevealViewController에서 버튼을 주문한 방법이나 클래스에 대한 설명이 있어야한다고 생각합니다. 그렇지 않으면, 나는 지금 우둔 해. –

+0

SocialMedia 클래스는 무엇을 의미합니까? – fitsyu

관련 문제