Search results for

Xcode

92,321 results found

Post

Replies

Boosts

Views

Activity

xcode 7 beta simulator crashes on start
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
3
0
759
Jun ’15
Auto generate swift protocol placeholders in implementation class
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.
4
0
4.0k
Jun ’15
Xcode Beta 7
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
0
0
452
Jun ’15
Multiple embed segues
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?
0
0
543
Jun ’15
Reply to Image not showing on iOS8
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:
Jun ’15
Reply to Break on throw?
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:
Jun ’15
Reply to guard vs control-flow-aware typing?
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:
Jun ’15
SKTextureFilteringMode
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
10
0
1.3k
Jun ’15