xcode6.1

Unable to boot device in current state: Booted

独自空忆成欢 提交于 2019-12-02 16:57:40
Any guess on "Unable to boot device in current state: Booted" error in Xcode6 beta while running (build+run) project in Simulator. I am just running my existing project in Xcode 6 I found above message. I tried cleaning, deleting of the derived data, even restarting the simulator doesn't work. Finally i restarted my Xcode 6 then it is working. Any simpler way to resolve the error instead of restarting your xcode6. In Xcode go to the Xcode menu->Open Developer Tool - IOS Simulators. Choose simulator and then go hardware->device->manage device. If the troubled device shows in the left column,

issue with using Core Plot in XCode6.1

会有一股神秘感。 提交于 2019-12-02 16:13:11
问题 I followed each step successfully from here. I am able to import #import "CorePlot-CocoaTouch.h" But When I Build My Project I get linker Error.How I can resolve this error. Here is the screenshot of the error that i am getting: 回答1: Those missing symbols are from the Accelerate framework. Recent Core Plot builds require your app to link that framework, too. 来源: https://stackoverflow.com/questions/29342286/issue-with-using-core-plot-in-xcode6-1

Incorrect path for Pods.debug.xcconfig in Xcode?

一曲冷凌霜 提交于 2019-12-02 15:07:30
so I used Venmo/Synx on my Xcode project with CocoaPods, and it completely screwed everything up. I was able to fix the Manifest.lock and Podfile.lock errors, but now I am getting this error: The file “Pods.debug.xcconfig” couldn’t be opened because there is no such file. (/Users/user/GitHub/xxxxxx/Pods/Pods/Target Support Files/Pods/Pods.debug.xcconfig) As you can see, the path is incorrect, as there is no Pods/Pods directory (there is one extra pod). How can I fix this? I have only added PODS_ROOT to the user-defined variable, as that fixed my Podfile and Manifest.lock files. Any help would

issue with using Core Plot in XCode6.1

与世无争的帅哥 提交于 2019-12-02 11:10:18
I followed each step successfully from here . I am able to import #import "CorePlot-CocoaTouch.h" But When I Build My Project I get linker Error.How I can resolve this error. Here is the screenshot of the error that i am getting: Those missing symbols are from the Accelerate framework. Recent Core Plot builds require your app to link that framework, too. 来源: https://stackoverflow.com/questions/29342286/issue-with-using-core-plot-in-xcode6-1

Can't archive working 6.0.1 Swift project in Xcode 6.1 / Segmentation fault: 11

[亡魂溺海] 提交于 2019-12-02 05:59:06
问题 Command failed due to signal: Segmentation fault: 11 While type-checking expression at [/Users/thedude/Documents/Repositories/MyProject/Data.swift:258:36 - line:258:56] RangeText="UILocalNotification()" The error is referring to the following line of code. var notification = UILocalNotification() // also tried var notification:UILocalNotification = UILocalNotification() The problem only occurs when archiving (to submit to store). If I comment out that line of code the error will just appear

Chartboost integration issues with XCode 6.1

末鹿安然 提交于 2019-12-01 23:17:34
I integrated Chartboost in Xcode 6.0 in the same project and it was working fine but as I updated my Xcode to Xcode 6.1 the bridging header file is not able to compile successfully. I have added Chartboost framework in my project and added these required frameworks as mentioned in guide. StoreKit Foundation CoreGraphics UIKit I added these lines in my bridging header file import Chartboost/Chartboost.h import Chartboost/CBNewsfeed.h import CommonCrypto/CommonDigest.h import AdSupport/AdSupport.h Now when I try to build my project the Xcode gives me hell lot of swift compiler errors. Here are

EXC_BAD_INSTRUCTION happens when using dispatch_get_global_queue on ios 7(swift)

血红的双手。 提交于 2019-12-01 17:14:36
let downloadGroup = dispatch_group_create() var images = [UIImage]() var errors = [NSError]() dispatch_apply(UInt(urls.count), dispatch_get_global_queue(QOS_CLASS_USER_INITIATED, 0)) { (i) in dispatch_group_enter(downloadGroup) SimpleCache.sharedInstance.getImage(urls[Int(i)], completion: { (image, error) -> () in if let fullImage = image { images.append(fullImage) } else { if let err = error { DLog(err.description) errors.append(err) } } dispatch_group_leave(downloadGroup); }) } dispatch_group_notify(downloadGroup, dispatch_get_main_queue()) { completion(images, errors) } above is my code

Adding test target to an existing project is not working

寵の児 提交于 2019-12-01 16:32:55
I need to add test cases to an existing project, so I tried adding a new test target via File -> New -> Target -> Cocoa Touch Testing Bundle From the test navigator filter bar. Even after adding, the target is not getting listed in the test filter bar. May be because of this issue, Product -> Test option is diabled in my project. Also I could see some differnce between the build setting in my project and another sample project I started in Xcode 6.1 in which Product -> Test option is enabled and everything working fine for Test cases. Please find the build settings screen shots. Any help is

Xcode 6.1 keeps telling me some PartialInfo.plist couldn't be opened

最后都变了- 提交于 2019-11-30 11:13:27
After I upgraded to Xcode 6.1, it kept throwing this exception when I tried to build my existing application. I tried to remove 'MyController' and add back again. But it would throw the same exception with different controller. could not read data from '/Users/macbookpro/Library/Developer/Xcode/DerivedData/MyApp- dmhwkhbfbxprhycwjeunwtbbtsxj/Build/Intermediates/MyApp.build/DEV-iphoneos/MyApp.build/MyController- PartialInfo.plist': The file “MyController-PartialInfo.plist” couldn’t be opened because there is no such file. I found the answer. I have to replace all xib files' IBCocoaTouchPlugin

Xcode 6.1 keeps telling me some PartialInfo.plist couldn't be opened

家住魔仙堡 提交于 2019-11-29 16:48:50
问题 After I upgraded to Xcode 6.1, it kept throwing this exception when I tried to build my existing application. I tried to remove 'MyController' and add back again. But it would throw the same exception with different controller. could not read data from '/Users/macbookpro/Library/Developer/Xcode/DerivedData/MyApp- dmhwkhbfbxprhycwjeunwtbbtsxj/Build/Intermediates/MyApp.build/DEV-iphoneos/MyApp.build/MyController- PartialInfo.plist': The file “MyController-PartialInfo.plist” couldn’t be opened