Search results for

Apple Maps Guides

149,446 results found

Post

Replies

Boosts

Views

Activity

The core Idea Of Metal
I think that the core idea of metal in the apple systems will provide heavy, in depth gamers a faster and easier way to play and develope their games, now I'm just wondering is there a way to make metal any faster
1
0
769
Jun ’15
3 finger drag in El Capitan
The option to use three fingers without click on the trackpad has been removed in El Capitan. I loved that feature. Was this done intentionally? If so, why was the feature removed? If it was not intentional, Apple, please re-add this feature into El Capitan.Thank you!
4
0
1.5k
Jun ’15
Watch OS 2 Beta
Hello,i tried to update my Apple Watch on Watch OS 2 Beta, but it crashes an now i cant Reset my Apple Watch. It only shows a red exclamation Mark.Anyone other got this Problem?Is there a way to get Help in the Apple Store?
8
0
1.2k
Jun ’15
Reply to Watch OS 2 Beta
They won't be able to help you in the Apple Store since this is beta software. I recommend contacting Apple Developer Program Support via this form https://developer.apple.com/contact/submit.php . They should sort things out and get you to the right department.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Cloudkit concurrent connection
Hi everyonei am amazed by the _huge_ amount of data storage given for free by apple with cloudkit. App can scale to 1PB and 10.000.000 users at no cost. and this is amazing. the one thing that make me wonder is the connection per seconds allowed.On the cloudkit page if we bring the bar to the maximum we can see that with 10.000.000 users the connections per seconds are capped to 400.You may say that's a lot and i agree with this. In my weirdest dreams i have 400 users per seconds on my app. BUT. if we consider 10.000.000 milion users, which with a good app could be, due to the vast amount of apple devices out there, 400 users per seconds seems low.Lets suppose i project a social app, something that can get for example 1 milion users. it will be likely that of this 1 milion user at least 1% can connect at the same time, ok maybe not at that precise single seconds in the day, but 10.000 user can connect in the same moment. So if i base my app on cloudkit, which seems great to me, this means th
1
0
3.5k
Jun ’15
Reply to Is developing extensions for Safari free?
I don't know, what is in it for you to develop Safari extensions? I've met enough people who make a living writing open source software that gets given away for free.As far as I can tell, you can develop all the Safari extensions you want for free. It's 2015, if there's documentation you need, it's probably not locked into some place that only paying Developers can see it, even if that's the only place Apple puts it. But if you want to take advantage of Apple publishing your extensions someplace nice and visible, and getting a small amount of tech support from Apple, then you'll have to pay the nominal yearly fee.
Topic: Safari & Web SubTopic: General Tags:
Jun ’15
Reply to WWDC Platforms State of the Union Notes
/System/Library/LaunchDaemons com.apple.rootless.init.plistThere's also a LaunchD located above./System/Library/PrivateFrameworks/SIUFoundation.frameworkNew SIU framework that I haven't delved into./System/Library/PrivateFrameworks/WatchdogService.frameworkShowed Rich this earlier. Return of the Apple Server?/System/Library/CoreServices/Security Configuration.app/System/Library/CoreServices/Security Configuration.app/Contents/MacOS/Security ConfigurationYou can run this binary without going into the Recovery Partition, however there are not any CLI options./System/Library/CoreServices/XProtect.BundleNew bundle for XProtect
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
iOS 9 simulator black screen
I tried to run an existing app in the iOS 9 simulator but all I get is a black screen with a white apple logo and a progress bar. It looks like the simulator is downloading a new version of iOS? It's been sitting there for 15 minutes without moving. What's going on?
6
0
15k
Jun ’15
Reply to What's New in Managing Apple Devices notes
Apple DEP service/hidden admin account - Random GUID. Currently cannot update password/target user. They are working on sending GUID information back to MDM server at creation account time to target later. This isn't a provision profile, but a part of the DEP Setup Assistant activation.Apple Configurator 2- Now uses CommerceKit to support Caching Servers. _Should_ support multiple front-facing IP addresses but could not be confirmed with engineering.- Shared Cache Container- New identifier - com.apple.configurator.ui- Blueprints are .plists and can be exported/imported by moving files to ~/Library/Group Containers/Group.com.apple.configurator/Library/Application Support/com.apple.configurator/Blueprints - EXPECT changes to keys/layout.- Automator actions currently require administrative rights and installation tool does not work - will be fixed in a future update.Apple Caching Service- Can optionally cache iCloud personal / business data (1 or both). Data location is truncated in lo
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Manually manage display on/off
Hi, With watchOS 2 going live now, I was searching on the references if Apple added a new function for managing when the screen shouldn't go off. It's important for me, cause I'm develeping an app for managing 1d barcode storecard, and the screen go off when you move your wrist...If some has an information about this, please let me know.Thanks
2
0
260
Jun ’15
Reply to How to print Swift 2.0 iBook
I posted how to do this in the old forums: https://devforums.apple.com/message/1120684#1120684 using a technique Erica Sadun created (reference in the thread above). Essentially you use SiteSucker to pull the HTML to a local folder, then use Calibre to reformat the HTML in PDF or some ebook format.That said, its not working today. There is some kind of access issue - while Apple seems perfectly happy to let me view the Swift online HTML using any browser without even logging in, when SiteSucker tries to download it I get a 401 Access Failure. Sent this to SiteSucker support, but I'm not optimistic.BTW - there is a bug in the Apple Mac App Store version of SiteSucker so the new version won't work in any case. Erica used the older free 7.6.2 version which worked fine for Swift 1.2
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
"MKMapKit viewForAnnotation" no longer changing annotation image in iOS 9.
I've noticed that in iOS 9 the annotations on my map are no longer using the images I wish to assign them and are now just showing up as red pins. This does not happen in iOS 8 or 7. Here is the code I am using to change the annotations image:- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation{ if (annotation == mapView.userLocation) return nil; MKPinAnnotationView *annView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@pin]; UIImage *annotationImage = [UIImage imageNamed:@MyFileNameWhatever.png]; annView.image = annotationImage; annView.canShowCallout = YES; return annView; }I can't see any changes in the release notes for iOS 9, has something changed?
7
0
4.2k
Jun ’15