Search results for

“Apple Maps Guides”

155,787 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
225
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
613
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
195
Jun ’15
Reply to iOS 9
I've tried from two computers at two locations and it keep redirecting me to the Apple ID settings page.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Core App Development
That's because Apple provides frameworks to enable third-party keyboards.So we can alter the keyboard but not the internal workings of the app.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Can't download IOS 9 \ Xcode 7
I found the solution at here: can't download(Thread)Just confirm your email apple id. After that you can download it.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Watch shows red exclamation point on reboot after installation
I did but having the same issue. From what I can find...looks like it requires a reset by Apple at the hardware level.Wondering if the genius bar at my local store will deal with this issue. Or is there a seperate developer support I should contact?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
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.
Replies
0
Boosts
0
Views
225
Activity
Jun ’15
Reply to Can't add Apple pay card to wallet on watch
Working ok for me. I had to restart my phonea and watch both, in the Apple Watch app I went to Wallet & Apple Pay and have an Add Credit or Debit Card option, entered my Apple password and all is working.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
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:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Open-Sourcing Plan
harder to get support if we are all using different variants of the available classesWhat classes are you talking about? Apple will only be releasing the compiler and standard library.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
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:
Replies
4
Boosts
0
Views
613
Activity
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:
Replies
Boosts
Views
Activity
Jun ’15
How to debug a WatchKit App?
I'm trying to do a simple app to mess with the sensors of Apple Watch. With Xcode 7 I can run the project and the app installs on the watch. But I can't debug the app (the app not starts itself).It's something too early yet?
Replies
0
Boosts
0
Views
282
Activity
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:
Replies
Boosts
Views
Activity
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?
Replies
0
Boosts
0
Views
195
Activity
Jun ’15
Reply to What happen to iTunes Radio?
I think that with the debut of Apple Music, they are going to retire iTunes Radio, so they may be in the process of doing that now...
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Can't add Apple pay card to wallet on watch
Mine just says Wallet (No & apple pay or any adding option)Liviu
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15