«swift2» 태그된 질문

이 태그는 Apple Swift 프로그래밍 언어 버전 2.x의 변경 사항과 직접 관련된 질문에만 사용하십시오. 보다 일반적인 언어 질문에는 [swift] 태그를 사용하고 Apple 플랫폼에서의 개발에 대한 질문에는 태그 [ios], [cocoa], [apple-watch] 등을 사용하십시오.

2
Swift에서 '모두 잡기'예외에 대한 세부 정보를 인쇄하는 방법은 무엇입니까?
Swift를 사용하도록 코드를 업데이트하고 있는데 'catch all'절과 일치하는 예외에 대한 오류 세부 정보를 인쇄하는 방법이 궁금합니다. 내 요점을 설명하기 위해이 Swift Language Guide 페이지 의 예제를 약간 수정했습니다 . do { try vend(itemNamed: "Candy Bar") // Enjoy delicious snack } catch VendingMachineError.InvalidSelection { print("Invalid Selection.") } catch VendingMachineError.OutOfStock { print("Out …
84 ios  swift  swift2 


17
프레임 워크를 찾을 수 없음 GoogleToolboxForMac
"pod update"를 통해 Firebase를 업데이트 한 후 다음과 같은 오류가 발생했습니다. ld: warning: directory not found for option '-F/Users/bennysantoso/Library/Developer/Xcode/DerivedData/FCM-atfcxuircoryufazlomgwfgmvaqm/Build/Products/Debug-iphonesimulator/GoogleToolboxForMac' ld: framework not found GoogleToolboxForMac clang: error: linker command failed with exit code 1 (use -v to see invocation) 여기 내 Podfile : # Uncomment this line to define a global …

5
일반 메서드에서 프로토콜 기본 구현 호출
그런 일을 할 수 있는지 궁금합니다. 다음과 같은 놀이터가 있습니다. protocol Foo { func testPrint() } extension Foo { func testPrint() { print("Protocol extension call") } } struct Bar: Foo { func testPrint() { // Calling self or super go call default implementation self.testPrint() print("Call from struct") } } let …
82 swift  oop  protocols  swift2 

12
Swift를 사용하여 iOS에서 오른쪽에서 왼쪽으로 뷰 컨트롤러를 표시하는 방법
새 화면을 표시하기 위해 presentViewController를 사용하고 있습니다. let dashboardWorkout = DashboardWorkoutViewController() presentViewController(dashboardWorkout, animated: true, completion: nil) 이것은 아래에서 위로 새로운 화면을 보여 주지만 UINavigationController. 스토리 보드 대신 Xib를 사용하고 있는데 어떻게 할 수 있습니까?
82 ios  swift  swift2  segue 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.