Search results for

Apple Maps Guides

149,446 results found

Post

Replies

Boosts

Views

Activity

Apple Watch will not turn on
I had updated to watchOS 2 and last night I reset the watch and left it on the charger. Today morning I tried to turn on the watch to pair it with my phone, but the watch was warm to the touch and would not turn on. I took it off of the charger let it cool and then tried again. Then I put it back on the charger for a bit and tried it again.Is there anything else that I can do? I have a genious appointment for tomorrow.
1
0
179
Jun ’15
Combining Activity Data
As I thought more about how to solve my activity data problem in a different post of mine I thought of this. My activity data for my apple watch is stored in a backup that is running iOS 8.3. My watch is now running OS 2.0 and I must have my iPhone running iOS 9 obviously to connect the two. If I continue to track my acitivity data running iOS 9 and WatchOS 2 and later when (if ever) there is a way to downgrade to Watch OS 1.0.1 again could I option-click update and go back to iOS 8.3 on my phone and restore from my backup of iOS 8.3 with that activity data to combine with the days I got running iOS 9? It's confusing and I don't know if it's possible but worth a shot.Even If I lose the activity data I have in the iOS 8.3 backup I wouldn't mind too much as long as I don't lose the activity data I have everytime I update to a new beta version.
0
0
166
Jun ’15
Reply to Play sound on watch
Still waiting for my phone to update to IOS 9 so I can test it...but here is the code apple gave on thier transition page:NSBundle* myBundle = [NSBundle mainBundle];NSURL* movieURL = [myBundle URLForResource:@myMovie withExtension:@mp4];NSDictionary* options = @{WKMediaPlayerControllerOptionsAutoplayKey : @YES};[self presentMediaPlayerControllerWithURL:movieURL options:options completion:^(BOOL didPlayToEnd, NSTimeInterval endTime, NSError * __nullable error) { if (error) NSLog(@Error: %@, [error description]); / }];
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Weather app finding different location for default listing...
If you look up 0.0N, 0.0W on google maps, it shows as a spot to the west of Africa in South Atlantic so the bug probably has something to do with no GPS location.I too have had variations of this problem.Weather sometimes shows the correct temperature, yet the location title says South Atlantic Ocean. Other times it works correctly. Finally sometimes, it just says South Atlantic and no weather information.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Deploying Apps to VPP store
HiWe are struggling to find resources on how to make our app available in the VPP education store. To clarify- this isn't about how to install is on devices, (which there is no shortage of information on), this is specifically about getting our app listed on the VPP for education store so schools can then download and sitribute it to their iPads.Can anyone point me in the direction of a guide for this? Deploying to the regular app store was easy- for some reason this seems to be a little-known secret.Thanks in advance- any help really appreciated as we've been getting our heads around this for a while now.
2
0
474
Jun ’15
Restricted /bin directory after 10.11 upgrade
My /bin directory now has a restricted flag on it. Even with sudo i can't change anything. I tried using chflags to remove it without luck. % ls -alO / | grep -i restricted !2008drwxr-xr-x@ 4 root wheel restricted 136 Jun 8 16:17 Systemdrwxr-xr-x@ 56 root wheel restricted,hidden 1904 Jun 8 16:30 binlrwxr-xr-x@ 1 root wheel restricted,hidden 11 Jun 8 16:23 etc -> private/etcdrwxr-xr-x@ 59 root wheel restricted,hidden 2006 Jun 8 16:24 sbinlrwxr-xr-x@ 1 root wheel restricted,hidden 11 Jun 8 16:23 tmp -> private/tmpdrwxr-xr-x@ 12 root wheel restricted,hidden 408 Jun 8 16:30 usrlrwxr-xr-x@ 1 root wheel restricted,hidden 11 Jun 8 16:24 var -> private/varI also tried adding my user to the perms, sudo su as root cant even move files there.Making it really difficult to edit the scripts i have there.I even did a permission verify and repair on the disk.MacBook (Retina, 12-inch, Early 2015)1.2 GHz Intel Core M8 GB 1600 MHz DDR3INTEL HD Graphics 5300 1536 MBAvailable: 430.94 GB (430,935,441,408 bytes) Capacity:
3
0
3.5k
Jun ’15
Power Logs
Ive been requested by Apple Engineering to supply power logs for iOS 9, ive enabled logged as per Instructions here: https://developer.apple.com/bug-reporting/ios/battery-life/ however there are no power logs collected in: ~/Library/Logs/CrashReporter/MobileDevice/[Your_Device_Name]/ after doing a sync via iTunes.Has anyone else managed to get any logs and if so what am I doing wrong?Thanks
1
0
1.7k
Jun ’15
Reply to Does anyone have sample code for complications?
Hi,I found it complicated to get the complications to show up in the Simulator—the code was relatively simple, but placeholders didn’t seem to show up due to caching issues.The video ‘Creating Complications with ClockKit’ is definitely the best place to start—the code below is based on the code shown in the video.Create a new project------------------------------------------I found it easier to create a new project with the complication support added in (which also generates the stubs for the data source protocol functions), and then add that to my existing project. + File > New > Project > watchOS > Application (‘iOS App with WatchKit App’) + Add in ‘Include Complication’Targets------------------------------------------Check the following settings for the WatchKit Extension target: + Target > WatchKit Extension + Complications Configuration: + Data Source Class = %(PRODUCT_MODULE_NAME).ComplicationController + Supported Families: check required families (only check the ones you’re handling in
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Is developing extensions for Safari free?
Here is the answer from Apple. No hint that they will change their mind.Hello Per,Thank you for contacting Apple Developer Support, my name is Andrej and I am happy to assist.I understand that you are confused why you need to pay now for the Developer Program. I also understand that you would like to get answers regarding your concern. I am more than happy to help you with that.Please be informed that since the 8th of June 2015 the Developer Program has been updated. We have now one Apple Developer Program which combined the iOS, Mac and Safari Developer Program. Below I attached you a very useful link regarding the major update.https:/ let us know should you have any other question. If you prefer you can also call us at 00353 1 2480047 (Mon-Fri, 08:00-17:00 GMT), please refer then to your case number 822629949.Have a great day!With Kind Regards,AndrejApple Inc.
Topic: Safari & Web SubTopic: General Tags:
Jun ’15
Automatic formatting of Swift code
There's a weird behaviour in Xcode when writing Swift code.Try to write this code for example:var fullName: Bool { get { return firstName + + lastName } set { splitFullName(fullName); } }Now what really happens is this:var fullName: Bool { get { return firstName + + lastName } set { splitFullName(fullName); } }That weird indentation is something that Xcode strongly insists on. And I know that although Apple developer seem to think that brackets on the same line is better for some reason, there's no way in **** they think that that indentation is correct!
6
0
11k
Jun ’15