Search results for

Apple Maps Guides

149,460 results found

Post

Replies

Boosts

Views

Activity

Why can't I sign in to iCloud when I select "Use different Apple IDs for iCloud and iTunes?"
So, I've restored onto my iPhone 6 and started getting back into the phone.When I'm on the Apple ID screen, select Sign In with Your Apple ID then select Use different Apple IDs for iCloud and iTunes? and then enter the information - the Next button is never enabled, and no way to continue.Anyone else having the same problem? I'm sure just doing it later would likely work, it's just the on-boarding workflow that's busted.
0
0
203
Jun ’15
Reply to Can't download IOS 9 \ Xcode 7
That is the solution for sure?My Apple ID which I use all over my devices is my e-mail which is x.x@gmail.comMy Developer Apple id is XXXX (username) and the associated e-mail is the same x.x@gmail.comSo What do I need to do?Chnage the primary e-mail on my x.x@gmail.com account?That would result changing my Apple ID on all my devices?That's kind of dumb isn't it?Update:OK, So I created a new e-mail address y.y@gmail.comMade it my new primary e-mail in the developer account, verifyed and that's it.Now I need to make a forwarding rule from it to my main gmail (x.x@gmail.com)
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
NSURLConnection times out after reopening app
Hello,In my app I use a NSURLConnection to upload some content. Everything works fine except when I reopen the app after like one hour.On my personal wifi, everything is fine, but when I connect using my operator data plan (I never observed any issue like this on other apps), the first NSURLConnection times out. If I try again, the operation succeeds.I use a standard NSURLConnection.NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:delegate];Using[NSURLConnection sendAsynchronousRequest:request...]also leads to a timeout.On another thread on the Apple developer forum somebody suggested to run a packet trace, which I did. The request does not seem to be sent.I'm a bit out of ideas, do you have one ?Thanks a lot!
Topic: UI Frameworks SubTopic: AppKit Tags:
4
0
582
Jun ’15
Reply to Arrays of tuples
Hi Erica, thanks for the reply. In keeping my original post short, I neglected to mention that the way I ran into this is that I opened a project that worked fine with XCode 6.3.2 but that did not compile with XCode 7. So for me, this did not happen with pre-2, or at least not with the current released version of XCode.Paste the following into a new iOS Playground in both XCode 6.3.2 and 7. It works in the former but not in the latter.import UIKit var errors = [(Int, String)]() errors.append((400, Bad Request))Would like to hear from someone from Apple if this is a bug or a language change.
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
Reply to Generics?
Thanks!I also managed to dig up information in the Swift - ObjC bridging book. Cool stuff. Hopefully Apple has liberally sprinkled their API with generics to reduce casting in Swift.
Topic: Programming Languages SubTopic: General Tags:
Jun ’15
Interface objects still write-only
According to the docs and some tests I just ran, interface objects in watchOS 2.0 are still write-only. I'm wondering what the reasoning behind this is now the code excutes on the watch, and therefore there's no longer a round trip to the phone. WatchKit developers have traditionally had to keep track of UI state manually due to this restriction imposed by the old architecture, but now the architecture has changed it seems a little strange to keep those restrictions in place. Could someone from Apple please comment on this?Also, it also seems a little strange that new watch app projects in Xcode still have seperate groups and targets for the interface and the code. Is this likely to change in a future beta?
0
0
179
Jun ’15