What is the problem?Xcode encountered a problem. Source editor functionality is limited. Attempting to restore...
Search results for
Xcode
92,321 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
>I am archiving so that I can upload it to the Organizer to then upload it to iTunes Connect.If by that you mean submit to the store, devs are obligated to use only release tools for that process, so Xcode 7 beta is a no-go. Latest release version of Xcode and highest version for building and submitting to the store is v6.3.2◅▻
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
I am having a 100% failure trying to open the Simulator in xcode 7 beta. Either when I try to run an app or open the simulator from Open developer tool, it immediately crashes with this message:Process: Simulator [9467]Path: /Applications/Xcode-beta.app/Contents/Developer/Applications/Simulator.app/Contents/MacOS/SimulatorIdentifier: com.apple.iphonesimulatorVersion: 9.0 (602)Build Info: Indigo-602000000000000~29Code Type: X86-64 (Native)Parent Process: ??? [1]Responsible: Simulator [9467]User ID: 501Date/Time: 2015-06-15 20:33:46.294 -0700OS Version: Mac OS X 10.10.3 (14D136)Report Version: 11Anonymous UUID: 015164CE-38DB-27C6-9EF3-447DD92F2AB7Time Awake Since Boot: 2200 secondsCrashed Thread: 0Exception Type: EXC_BREAKPOINT (SIGTRAP)Exception Codes: 0x0000000000000002, 0x0000000000000000Application Specific Information:dyld: launch, loading dependent librariesDYLD_INSERT_LIBRARIES=/usr/lib/libignitor2.dylibDyld Error Message: could not load inserted library '/usr/lib/libi
HiAfter I create a protocol I typically create concrete implmentation of the protocol.Xcode will say you have not implmented the required protocol methods in the implementation class, clas does not conform to protocol:Would it be possible to add a feature to Xcode where it will automatically generate dummy implmentations for the missing required protocol methods, a Fix-It type hint feature.In the eclipse Java IDE there is fix-it type feature Add unimplmented methods and generates dummy implementations which allows you to focus on the minmal methods you need to get implemented to get the app compiling and running.
Using the Application Loader instead of XCode's Organizer finally solved the problem.
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Tags:
Using the Application Loader instead of XCode's Organizer finally solved the problem.
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Tags:
Try changing the Deployment Target of your frameworks to 8.0. Currently iOS playgrounds have a deployment target of 8.0 in Xcode 7 beta.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
Hi,While building app using xcode 7 beta for testing the device, it was asked code signing certificate fix then after entring our apple ID and password running few seconds and stops and we got the mail from Apple “Your iOS Development certificate has been revoked” “You have revoked your certificate, so it is no longer valid”1) Will it my internal App builded with exsting provisional profile will work & continue?2) Is there any specific reason for happen in xcode beta7?Thanks,Murugesh
Watching the What's new in Storyboards talk from WWDC2015, the example application showed a custom container view control that had multiple embed segues coming out of it. That's never been possible before, as far as I know. Unfortunately the sample code that went with that talk wasn't actually the sample application they kept showing.Is this a new feature of Xcode 7? Is it something we can do ourselves somehow?
Thank you.Well, the image welldone.png shows on the Xcode screen when I navigate to Xcode > Project navigator > Project name > Classes > Graphics > Interface Graphics > welldone.png.I set a breakpoint in KLPAViewController.m > line 209 > UIImage *backgroundImage = [UIImage imageNamed:@welldone.png]; > I'm not sure how to look for the value of the background variable?I see the Debug area at the bottom and a load of data.
Topic:
Programming Languages
SubTopic:
General
Tags:
Yes, it was mentioned in What’s New in LLDB. The debugger command is:br s -E swiftIt seems that it is not yet possible to enable this breakpoint in the Xcode 7 UI so you have to type it manually in the debugger when you run your program (or put it in your ~/.lldbinit).
Topic:
Programming Languages
SubTopic:
Swift
Tags:
Hello,as far as my memory goes, it was possible to use Xcode 5.x to run code on iOS 8. Or am I wrong?My Xcode 6.3 — even after attempting to read symbols — tells me that my iOS 9 device is inelligible. Is that a bug, or works as specified?ThanksAlex
You keep saying shadowing. Shadowing is allowed, but redefining is not. The code I showed you is redefining x, not shadowing it. If you try to shadow a local variable it works fine.One more time:Shadowing is when you define a variable in a scope when the same name is already used in the outer scope. The variable in the outer scope cannot be referred to, which is why it is called shadowing.Redefining is when you try to define a variable with a name that is already used in the same scope.If you want to have a language that creates a new scope for every line, then that is fine, but Swift is currently not that language.
Topic:
Programming Languages
SubTopic:
Swift
Tags:
I can not remove managed by xcode provisioning profiles from my account on developer portal. When i delete them and open xcode they are automatically created. Is there a way to stop xcode to stop regenerating these profiles?
Topic:
Code Signing
SubTopic:
Certificates, Identifiers & Profiles
Tags:
Signing Certificates
Provisioning Profiles
Downloaded Xcode 7 beta to try it out and discoverd when setting an SKTextures filtering mode to nearest it does not work (as in there are no visible results when running the app, I still see blurred pixels). Simple example below:let texture = SKTexture(imageNamed: image) texture.filteringMode =.Nearest let sprite = SKSpriteNode(texture: texture) addChild(sprite)Just wondered if this was a known issue with this beta or it's just happening to me?Thanks,Tom