Search results for

“xcode github”

95,449 results found

Post

Replies

Boosts

Views

Activity

Reply to Xcode 7 - can not create local repository, commit files.
Same here - cannot access remote Git repository. Plus, when I go into Xcode 7 Preferences -> Accounts, the repository entries that existed for my projects under Xcode 6.3.2 are either corrupted or not present, and, if I so much as select any of them, Xcode 7 crashes.Have not tried a clean install of Xcode 7 as I both of my development machines have 6.3.2 installed.I think we are stuck waiting for a fix. I have submitted a bug report, however.
Jun ’15
Reply to "Abort trap: 6" error in Swift 2 with Xcode 7 beta-1
I filed a bug report based on my own situation. Hopefully more people will submit bug reports and Apple will coalesce them. Here's the info:Bug ID: 21376523Title: Adding property of type SCNVector3 yields Abort trap: 6 errorClassification: Serious BugReproducibility: AlwaysDescription:When using Swift 2 with Xcode 7 beta-1 (7A120f), with SceneKit, using SCNVector3 produces Abort trap: 6 compile error. This happens whether a project is migrated from (Swift 1.2 + Xcode 6.3) to (Swift 2 + Xcode 7.0), or with a fresh Swift 2 + Xcode 7.0 project. Error text is below:------------------[COMMAND LINE COMPILER OPTIONS OMITTED BECAUSE OF 3,000 WORD BUG REPORT LIMIT]Assertion failed: ((IGF.IGM.DataLayout.getTypeSizeInBits(coercionTy) == IGF.IGM.DataLayout.getTypeSizeInBits(paramTI.StorageType)) && Coerced types should not differ in size!), function emitDirectExternalParameter, file /Library/Caches/com.apple.xbs/Sources/swiftlang/swiftlang-700.0.38.1/src/swift/lib/IRGen/IRGenSI
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
Multiple watch apps for single iOS app in OS 2?
I know it was not possible to have more than one Apple Watch app associated with a single iOS app in watchOS 1.0. Does anyone know if this is possible as of 2.0? I tried it and Xcode seems to allow me to create the multiple extensions, but simulators crash when I try to run. Would be great to hear from Apple on the official stance for this (I do have a very good usecase for it). Thanks!
2
0
1.1k
Jun ’15
Reply to Creating an IBOutlet or IBAction from a UIButton within a UITableViewCell subclass in a static UITableView
Have same problem here. But not only outlets don't connect. Assistant editor stops to work properly. I try to delete reference to my class and add it again. I try to delete drived data, clean project, restart xcode, restart OSX, restart computer, whole univers! That didn't works. Then i make another user and voila! It's start to work again! Outlets connects, assistant editor edits, univers spinning round'n'round. I decide that is files permissions problem an try to repair permissions for my current user. But that didn't works again. Is anybody else has this kind of problem? And solutions of cours!
Jun ’15
buttons and uipicker not visible on the view
I have create a new single view application and have added button and uipicker to the view howeve i cannot see the edges of the buttons and picker.Once I build and run the application i cannot see the uipicker on the iphone app. Please help and advise how to solve this issue.I using OS X Yosemite and XCode 6.3.2. Tried different iphone on the ios simulator but still not able to view correctly.
1
0
278
Jun ’15
swift 2 - Receiver "Some_Swift_Class" for class message is a forward declaration
I'm using xcode 7 and swift to write swift code and objective-c together. I I encounted Receiver Swift_Class for class message is a forward declarationSwiftCode.swift source file----------------------------------------class SwiftCode: NSObject { func someFunction() { }}Objective-CCode.m source file----------------------------------------.. SwiftCode *someSwiftCode = [ [SwiftCode alloc] init] <- failed hereDoes someone can help me, thanks in advance
4
0
4.6k
Jun ’15
fatal compiler error: PCH
First attempt building our code base in xCode7 for iOS -- getting a fatal error in the backend running ProcessPCH++. I've included the output below.Is there any further diagnostic details we can turn on to provide information? This is a LARGE codebase, and the chances of me being able to supply it to Apple as-is is zero.COMPILER ERROR==============fatal error: error in backend: Broken module found, compilation aborted!clang: error: clang frontend command failed with exit code 70 (use -v to see invocation)Apple LLVM version 7.0.0 (clang-700.0.53)Target: arm-apple-darwin14.3.0Thread model: posixclang: note: diagnostic msg: PLEASE submit a bug report to http:/ and include the crash backtrace, preprocessed source, and associated run script.Command /Applications/Xcode_7.0-beta1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang failed with exit code 11PCH CALL========ProcessPCH++ /Users/XXUSERXX/Library/Developer/Xcode/DerivedData/app-dkfbghqolkiziwhjwearcx
2
0
2.6k
Jun ’15
ErrorType protocol's hidden requirements
Both the documentation on ErrorType and the description given when you command-click on ErrorType in Xcode give ErrorType as:protocol ErrorType { }Which is, apparently, a lie. Attempting to add ErrorType to a struct's conformances gives does not conform to protocol 'ErrorType' errors.Inspecting any ErrorType using LLVM reveals that the ErrorType definition is really:protocol ErrorType { var _domain: String { get } var _code: Int { get } }Sure enough, if you implement these hidden methods, any type can conform to ErrorType.Bringing me to my questions...Why is this requirement not exposed for us to use normally? Are we required to limit ErrorType to Swift enums and NSError for now?Related question: since ErrorType can extract an Int tag from an arbitrary enum, is there any public way to do the same without going enum -> ErrorType -> NSError -> code?
3
0
1k
Jun ’15
Reply to No Photos OS X app extension?
Thanks for the reply...Personally I've been waiting since Aperture was dumped and Photos came as beta on a very early Yosemite release.That was about 6 months ago.In the meanwhile the majority of my clients are radically moving to Lightroom so is my business.Apple strategies are strange and their focus on selfies iPhone photographers simply puzzles me.Will see when and what they will share in Xcode but at this time I am not holding my breath.Professional photo editing is no longer an Apple objective, they rather focusing on a golden watch than a pro app, after all this is no longer Apple Computers.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to swift 2 - Receiver "Some_Swift_Class" for class message is a forward declaration
Those are the docs to read, but to make Swift code work within objC, it's the automatically generated Swift header he needs to import into the obj-c. It doesn't show up in the project anywhere, but Xcode creates it automatically.The name of that header will be the name of the product module (usually the project name) followed by -Swift.hSo if your product module is MyApp, the import would be#import MyApp-Swift.h
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
In-App purchases basic question
My first app was recently approved by Apple, and want to add in-app purchase. should i create a brand new xcode project that includes everything plus the new features? or should i just use the old project and just add the new features there? what is the execution overview on this?
Replies
1
Boosts
0
Views
267
Activity
Jun ’15
Reply to pin xcode 7
Ah thanks. So pin means the add new constraits button.But what changed there? It works just as in Xcode 6.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Xcode 7 - can not create local repository, commit files.
Same here - cannot access remote Git repository. Plus, when I go into Xcode 7 Preferences -> Accounts, the repository entries that existed for my projects under Xcode 6.3.2 are either corrupted or not present, and, if I so much as select any of them, Xcode 7 crashes.Have not tried a clean install of Xcode 7 as I both of my development machines have 6.3.2 installed.I think we are stuck waiting for a fix. I have submitted a bug report, however.
Replies
Boosts
Views
Activity
Jun ’15
Reply to "Abort trap: 6" error in Swift 2 with Xcode 7 beta-1
I filed a bug report based on my own situation. Hopefully more people will submit bug reports and Apple will coalesce them. Here's the info:Bug ID: 21376523Title: Adding property of type SCNVector3 yields Abort trap: 6 errorClassification: Serious BugReproducibility: AlwaysDescription:When using Swift 2 with Xcode 7 beta-1 (7A120f), with SceneKit, using SCNVector3 produces Abort trap: 6 compile error. This happens whether a project is migrated from (Swift 1.2 + Xcode 6.3) to (Swift 2 + Xcode 7.0), or with a fresh Swift 2 + Xcode 7.0 project. Error text is below:------------------[COMMAND LINE COMPILER OPTIONS OMITTED BECAUSE OF 3,000 WORD BUG REPORT LIMIT]Assertion failed: ((IGF.IGM.DataLayout.getTypeSizeInBits(coercionTy) == IGF.IGM.DataLayout.getTypeSizeInBits(paramTI.StorageType)) && Coerced types should not differ in size!), function emitDirectExternalParameter, file /Library/Caches/com.apple.xbs/Sources/swiftlang/swiftlang-700.0.38.1/src/swift/lib/IRGen/IRGenSI
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’15
Multiple watch apps for single iOS app in OS 2?
I know it was not possible to have more than one Apple Watch app associated with a single iOS app in watchOS 1.0. Does anyone know if this is possible as of 2.0? I tried it and Xcode seems to allow me to create the multiple extensions, but simulators crash when I try to run. Would be great to hear from Apple on the official stance for this (I do have a very good usecase for it). Thanks!
Replies
2
Boosts
0
Views
1.1k
Activity
Jun ’15
Where is command line tools?
So I was just trying to download command line tools in the new Xcode 6.3.2 I went to downloads but couldn't where to do this.
Replies
1
Boosts
0
Views
681
Activity
Jun ’15
Reply to Creating an IBOutlet or IBAction from a UIButton within a UITableViewCell subclass in a static UITableView
Have same problem here. But not only outlets don't connect. Assistant editor stops to work properly. I try to delete reference to my class and add it again. I try to delete drived data, clean project, restart xcode, restart OSX, restart computer, whole univers! That didn't works. Then i make another user and voila! It's start to work again! Outlets connects, assistant editor edits, univers spinning round'n'round. I decide that is files permissions problem an try to repair permissions for my current user. But that didn't works again. Is anybody else has this kind of problem? And solutions of cours!
Replies
Boosts
Views
Activity
Jun ’15
buttons and uipicker not visible on the view
I have create a new single view application and have added button and uipicker to the view howeve i cannot see the edges of the buttons and picker.Once I build and run the application i cannot see the uipicker on the iphone app. Please help and advise how to solve this issue.I using OS X Yosemite and XCode 6.3.2. Tried different iphone on the ios simulator but still not able to view correctly.
Replies
1
Boosts
0
Views
278
Activity
Jun ’15
swift 2 - Receiver "Some_Swift_Class" for class message is a forward declaration
I'm using xcode 7 and swift to write swift code and objective-c together. I I encounted Receiver Swift_Class for class message is a forward declarationSwiftCode.swift source file----------------------------------------class SwiftCode: NSObject { func someFunction() { }}Objective-CCode.m source file----------------------------------------.. SwiftCode *someSwiftCode = [ [SwiftCode alloc] init] <- failed hereDoes someone can help me, thanks in advance
Replies
4
Boosts
0
Views
4.6k
Activity
Jun ’15
fatal compiler error: PCH
First attempt building our code base in xCode7 for iOS -- getting a fatal error in the backend running ProcessPCH++. I've included the output below.Is there any further diagnostic details we can turn on to provide information? This is a LARGE codebase, and the chances of me being able to supply it to Apple as-is is zero.COMPILER ERROR==============fatal error: error in backend: Broken module found, compilation aborted!clang: error: clang frontend command failed with exit code 70 (use -v to see invocation)Apple LLVM version 7.0.0 (clang-700.0.53)Target: arm-apple-darwin14.3.0Thread model: posixclang: note: diagnostic msg: PLEASE submit a bug report to http:/ and include the crash backtrace, preprocessed source, and associated run script.Command /Applications/Xcode_7.0-beta1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang failed with exit code 11PCH CALL========ProcessPCH++ /Users/XXUSERXX/Library/Developer/Xcode/DerivedData/app-dkfbghqolkiziwhjwearcx
Replies
2
Boosts
0
Views
2.6k
Activity
Jun ’15
Reply to Can not run iOS 8 simulator in XCode 7
In Apple's release notes for Xcode 7 beta found here: http://adcdownload.apple.com/WWDC_2015/Xcode_7_beta/Xcode_7_beta_Release_Notes.pdfXcode 7.0 beta does not support iOS 8.4 and earlier simulator runtimes. (20699475)
Replies
Boosts
Views
Activity
Jun ’15
ErrorType protocol's hidden requirements
Both the documentation on ErrorType and the description given when you command-click on ErrorType in Xcode give ErrorType as:protocol ErrorType { }Which is, apparently, a lie. Attempting to add ErrorType to a struct's conformances gives does not conform to protocol 'ErrorType' errors.Inspecting any ErrorType using LLVM reveals that the ErrorType definition is really:protocol ErrorType { var _domain: String { get } var _code: Int { get } }Sure enough, if you implement these hidden methods, any type can conform to ErrorType.Bringing me to my questions...Why is this requirement not exposed for us to use normally? Are we required to limit ErrorType to Swift enums and NSError for now?Related question: since ErrorType can extract an Int tag from an arbitrary enum, is there any public way to do the same without going enum -> ErrorType -> NSError -> code?
Replies
3
Boosts
0
Views
1k
Activity
Jun ’15
Reply to Swift is flagging the use of deprecated functions as errors
Using Xcode 7 beta, using __deprecated marks obj-c methods as @available(*, deprecated) in the generated Swift header.I tried importing a Swift framework with a deprecated class and a deprecated method using @available(*, deprecated), and it only caused warnings in the Swift code.It must work differently for Obj-C frameworks?
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to No Photos OS X app extension?
Thanks for the reply...Personally I've been waiting since Aperture was dumped and Photos came as beta on a very early Yosemite release.That was about 6 months ago.In the meanwhile the majority of my clients are radically moving to Lightroom so is my business.Apple strategies are strange and their focus on selfies iPhone photographers simply puzzles me.Will see when and what they will share in Xcode but at this time I am not holding my breath.Professional photo editing is no longer an Apple objective, they rather focusing on a golden watch than a pro app, after all this is no longer Apple Computers.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to swift 2 - Receiver "Some_Swift_Class" for class message is a forward declaration
Those are the docs to read, but to make Swift code work within objC, it's the automatically generated Swift header he needs to import into the obj-c. It doesn't show up in the project anywhere, but Xcode creates it automatically.The name of that header will be the name of the product module (usually the project name) followed by -Swift.hSo if your product module is MyApp, the import would be#import MyApp-Swift.h
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’15