Search results for

DTiPhoneSimulatorErrorDomain Code 2

158,600 results found

Post

Replies

Boosts

Views

Activity

Getting 2 weather glances
On my Watch I get one normal weather glance and one blurred one. On the Watch app on the phone it is showing 2 weather glances. If I turn one off the blurred one goes away from the Watch but on the phone app it still shows one on and one off. Any one else notice or have this issue?
0
0
151
Jun ’15
Checking for Update Endlessly
I thought I did everything right. I downloaded and installed Xcode 7 beta, iOS 9 beta, and opened the watchOS 2 beta config on my phone then selected Apple Watch as install location. Next I go to the Software Update section in the Apple Watch app, and it endlessly checks for an update. Where did I go wrong and what's the next step to fix it?
2
0
1.4k
Jun ’15
NSDatePicker issue?
I'm seeing a bizarre issue with NSDatePicker in 10.11. First, I'm creating it programmatically in a Cocoa-AppleScript applet. If you're still reading: when incremented/decremented with a stepper, the time values never display a minutes digit with a 6 or a 9. For example, it displays 10:26 as 10: 2 and 10:29 as 10: 2, 10:36 as 10: 3 and 10:39 as 10: 3, and so on. I've tried adjusting the font size, frame width, etc, but I don't think that's the problem. Works fine 10.8-10.10.Has anyone else seen this with a date picker used for time?
2
0
340
Jun ’15
Opening an .ipa in X Code - Swift
I developed a simple game app using Flash CC, I converted the game thru Adobe AIR and have a working IOS app. I was curious to see if it is possible to open the .ipa that was created and published in Flash and be able to to open in XCode so I can view the code and build.I was able to rename the file and save as a .zip and insode I do the a Payload folder which has the name of the app with the .app extensionI created a new workspace in XCode and imported the .app, Xcode sees it but I can only view resoursr and plist filesMy goal here is to build this kind of app IN XCode / Swift from scratch. This would be great for me since I know a bit of actionscript and since the Flash app has actionscript I would think that it would be converted to Objective C am I right?Any help?R
1
0
3.3k
Jun ’15
iTC payments question
First off, I want to express my wow. It's really good to see this all new forum system! I remember some months ago I posted my opinions about the inconveniences of the old forums. I feel a little proud that Apple guys listened to my voice and did a whole new piece of work. :-)Oh, my question is like this.I received my payments every 2 months since I published my first app half a year ago. A few days ago I received this payment:Last Payment123.45 USDPaid on June 4I'm not sure about the following questions:1. How the amount 123.45 USD is calculated. My earnings during past 2 months are not same with this number.2. Are all earnings paid to developers on every 2 months basis?Thanks.
1
0
426
Jun ’15
Reply to How do I run the project migration on an old project?
Well, first thing...and sorry to say this: XCode will not automatically 'port your Apple Watch code. All you really have to do is create new apple watch target. XCode will do that for you and then you must copy all your code and xib's, assets, storyboards yourself. Apple says this in their transition to watchos2 document.(Sorry, i don't know how to reactivate migration assistant but this is the answer you will end up with anyway...migration really isn't migration with XC7)
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Mail and multiple exchange accounts
additional observation - when on batter in the lower left it shows mailbox activity - well while on battery it shows steps 1-2 waiting for AC power... but I can not seem to find any settings to change this. (still working with just 1 exchange account)... will not sync even when manually syncing...
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Asynchronous Design Patterns with Blocks GCD
Sorry I can't point you to any sample code off the top of my head, but this sounds like a perfect application of NSOperationQueue and operation dependencies. You could add an operation for each download. You can set the max concurrent operations to limit the number of concurrent requests but still have parallelism. You could add your processing operation with an operation dependency on each of the download operations so it wouldn't start until all the downloads were completed.Posting sample code to show multi threading synchronization is fraught with peril anyway since every situation is different. But in general, if you are accessing a common data structure from multiple threads, you add a synchronization primitive around each and every access to that data structure (read or write), and try and ensure that you don't deadlock. Don't hold the lock while you're doing a long network operation, for example - do the network operation, then lock / update / unlock. I use Obj-C so I've been doing it
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to iTC payments question
1.) Check the iTunes Connect FAQs for details, but remember that daily reports are not to be considered dead accurate, and are calculated on a fiscal month...only the monthly financial reports are valid to reference for payouts.2.) Monthly. But know there may be conditions where earnings for a given month don't meet the payout threshold, which might delay payment until the next month. Again, see the iTC FAQs.
Jun ’15
Disable button not working
I am new to iOS app development and recently I was making a simple login app whose interface looks like this:http://imgur.com/W3nxMEGI just want the Login button to take me to the next ViewController only when:1) All fields are filled2) Passwords matchI created a pointer modButton that is hooked with the Login butotn in the storyboard. I disabled it in the loginButton action method but it doesnt seem to work.link to my code: imgur.com/01Y6X6UAnybody willing to help me solve this issue?Regards
2
0
785
Jun ’15
Reply to Can you submit to the App Store an app built with Xcode 7 as long as you are not targeting iOS 9?
While I have the same take on this as the other two posters Apple explicitly statet the fact in the past.This time - if you look into the XCode 7 release notes - there's this section:Submitting an archive built with BITCODE_ENABLED=NO will fail during upload. (21247555)Workaround: Build the archive with BITCODE_ENABLED=YES and then uncheck the “Include bitcode”option when distributing the archive (functionally equivalent).Not sure about the reasoning behind that, but why mention that you have to takecertain extra steps when submitting with the beta if it is - as always in the past - not allowed?
Jun ’15
Reply to Can you upgrade from a 10.10.4 beta?
You can. I did and the update process did work fine for me after the invitation code being unlocked for the German AppStore.But I found, 10.11 has way more bugs than 10.10.4 beta, so, for example, for me, Photos is not launching anymore and I got a problem with iCloud mail in Mail while all other accounts I got in there continue to work fine.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Passing Data from View Controller to Label in TableView
Not sure why you're trying to assign two things on the same line there. You should use separate assignment statements for clarity. In any case, you can't assign directly to your destination view controller's UI widgets from prepareForSegue. (It's bad style - a violation of MVC - but more importantly, the view has not yet been loaded at that point, so any outlets will be nil.)prepareForSegue should pass data / info to the child - here is the information you should display. It is up to the child to decide how and when to display it. Could be a UILabel, a UITextView, a UIButton, render fancy graphics into a UIImage, whatever - the parent should not know or care. The child should usually do this (populate its UI widgets based on the data it is supposed to display) in viewWillAppear.I have no idea what that repeating content error message means, but I suspect you have done something funky / non standard in the way you've set up your outlets. Might be worthwhile to watch some videos where they do it (e.g.
Jun ’15