xcode6.3.1

SWIFT + Parse signUpInBackgroundWithBlock no longer works: Xcode 6.3.1 [duplicate]

血红的双手。 提交于 2020-01-05 07:59:11
问题 This question already has answers here : Parse SDK methods not working in Xcode 6.3 Beta (5 answers) Closed 4 years ago . I'm using the latest parse code from the parse.com for user.signupInBackgroundWithBlock user.signUpInBackgroundWithBlock { (succeeded: Bool?, error: NSError?) -> Void in if let error = error { let errorString = error.userInfo?["error"] as? NSString self.showAlertWithText(message: "\(error)") } else { self.performSegueWithIdentifier("createNewUserAndGoToDashboard", sender:

'stdarg.h' file not found error

非 Y 不嫁゛ 提交于 2019-12-11 03:49:55
问题 I recently upgraded to xcode 6.3.1. I tried creating a sample project from "Master Detail application" template, but build failed with the below error. Device - Universal language - swift Not using Core Data Errors: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator8.2.sdk/usr/include/dispatch/dispatch.h:32:10: error: 'stdarg.h' file not found /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs

Why aren't simulators showing in the Xcode 6.3.1 scheme selector?

寵の児 提交于 2019-12-05 05:16:26
问题 I cannot seem to build for a simulator in Xcode 6.3.1 The scheme selector only lists iOS Device or my plugged in device as seen below: xcodebuild -showsdks lists it: OS X SDKs: OS X 10.9 -sdk macosx10.9 OS X 10.10 -sdk macosx10.10 iOS SDKs: iOS 8.3 -sdk iphoneos8.3 iOS Simulator SDKs: Simulator - iOS 8.3 -sdk iphonesimulator8.3 It appears to be in the correct location in the app bundle. I also can't build for i386 and x86_64 using xcodebuild The output from xcrun simctl list is as follows: ==

Why aren't simulators showing in the Xcode 6.3.1 scheme selector?

大城市里の小女人 提交于 2019-12-03 22:15:43
I cannot seem to build for a simulator in Xcode 6.3.1 The scheme selector only lists iOS Device or my plugged in device as seen below: xcodebuild -showsdks lists it: OS X SDKs: OS X 10.9 -sdk macosx10.9 OS X 10.10 -sdk macosx10.10 iOS SDKs: iOS 8.3 -sdk iphoneos8.3 iOS Simulator SDKs: Simulator - iOS 8.3 -sdk iphonesimulator8.3 It appears to be in the correct location in the app bundle. I also can't build for i386 and x86_64 using xcodebuild The output from xcrun simctl list is as follows: == Device Types == iPhone 4s (com.apple.CoreSimulator.SimDeviceType.iPhone-4s) iPhone 5 (com.apple

Core Location delegate methods not getting called in iOS 8.3 Xcode 6.3.1

纵然是瞬间 提交于 2019-11-30 17:25:58
I am trying to get the user's current location using the Core Location Framework in Xcode 6.3.1, I did following things: Added Core Location Framework under Target -> General -> Linked Frameworks & Libraries My ViewController.h file is as shown below, #import <UIKit/UIKit.h> #import <CoreLocation/CoreLocation.h> @interface ViewController : UIViewController<CLLocationManagerDelegate> @property (weak, nonatomic) IBOutlet UILabel *lblLatitude; @property (weak, nonatomic) IBOutlet UILabel *lblLongitude; @property (weak, nonatomic) IBOutlet UILabel *lblAddress; @property (strong, nonatomic)

Core Location delegate methods not getting called in iOS 8.3 Xcode 6.3.1

ぃ、小莉子 提交于 2019-11-30 01:48:04
问题 I am trying to get the user's current location using the Core Location Framework in Xcode 6.3.1, I did following things: Added Core Location Framework under Target -> General -> Linked Frameworks & Libraries My ViewController.h file is as shown below, #import <UIKit/UIKit.h> #import <CoreLocation/CoreLocation.h> @interface ViewController : UIViewController<CLLocationManagerDelegate> @property (weak, nonatomic) IBOutlet UILabel *lblLatitude; @property (weak, nonatomic) IBOutlet UILabel

The Developer Disk image could not be mounted error with iOS 8.4 device - Ineligible Devices section

走远了吗. 提交于 2019-11-29 14:51:58
I have tried with this but couldn't solve my issue - Ineligible Devices section. I m getting an error The Developer Disk image could not be mounted error with iOS 8.4 device can anyone please help me how can I run iOS 8.4 version device with Xcode 6.3.1 or updating the Xcode version is only the solution Thank you all in advance You will need to upgrade to Xcode 6.4 in order to support iOS 8.4 development - From the Xcode 6.4 release notes - New Features Xcode 6.4 includes the iOS 8.4 SDK to support development for iOS 8.4 apps. 来源: https://stackoverflow.com/questions/31261603/the-developer

The Developer Disk image could not be mounted error with iOS 8.4 device - Ineligible Devices section

一个人想着一个人 提交于 2019-11-28 09:59:23
问题 I have tried with this but couldn't solve my issue - Ineligible Devices section. I m getting an error The Developer Disk image could not be mounted error with iOS 8.4 device can anyone please help me how can I run iOS 8.4 version device with Xcode 6.3.1 or updating the Xcode version is only the solution Thank you all in advance 回答1: You will need to upgrade to Xcode 6.4 in order to support iOS 8.4 development - From the Xcode 6.4 release notes - New Features Xcode 6.4 includes the iOS 8.4 SDK

Property 'self.*' not initialized at super.init call

梦想与她 提交于 2019-11-27 02:40:08
问题 I just updated my xcode to 6.3.1. The problem is I got this weird error message since Swift 1.2. I got this kind of error message /Users/MNurdin/Documents/iOS/xxxxx/Library/SideBar.swift:32:15: Property 'self.originView' not initialized at super.init call /Users/MNurdin/Documents/iOS/xxxxx/Library/SideBar.swift:38:20: Immutable value 'self.originView' may only be initialized once on this code let originView:UIView? override init() { super.init() //error here } init(sourceView:UIView,