Search results for

Building for iOS Simulator, but the linked and embedded framework ‘XX.framework‘ was built for

186,335 results found

Post

Replies

Boosts

Views

Activity

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 Can I install back to iOS 8.3 after trying out iOS 9 beta?
I installed the iOS 9 beta on a secondary iPhone to try out the new OS, including the new Music app. However it seems that app is being released first on iOS 8.4 and is currently omitted from the iOS 9 beta, so I'm considering reverting that phone back from the beta.Before installing the beta, I performed a local iTunes backup. However, after doing so I neglected to switch the backup preference setting back from local to iCloud, and so when the phone performed its automatic nightly backup it overwrote the local iOS 8 backup with one for iOS 9. While it's possible to download an iOS 8.3 IPSW file and downgrade to that version, I don't believe I will be able to restore my data backup, since the sole backup is based on iOS 9.I'm assuming a workaround would be to first restore the last iOS 8 backup file from Time Machine and use that. However, I'm not sure if it's as simple as replacing this backup and restoring from it, or whether additional
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Compound AND predicate for many to many relationship using SUBQUERY
In reverse order:Go to the Content link, https://forums.developer.apple.com/contentThe threads you've created should show up under 'Authored'. The threads you've posted in should show up under 'Participated'.For(SUBQUERY(events,$x, $x.event LIKE[d] %@))it's important to understand that it's an expression which evaluates to a collection, not a single boolean value. That means that(SUBQUERY(events,$x, $x.event LIKE[d] %@))by itself isn't a valid predicate because doesn't evaluate to a boolean value. You need to embed the subquery expression in a complete boolean expression like(SUBQUERY(events,$x, $x.event LIKE[d] %@)).@count > 0
Jun ’15
Anyone else having problems performing iCloud backup?
On my iPhone it says I performed a backup earlier today. Two actually, one is the normal size I would expect and the other is 0KB. I cannot delete either backup from the phone or the iCloud windows program. When I plug my phone into Itunes the latest iCloud backup it recognizes is the one I did a few minutes before I put iOS 9 on my phone. Is anyone else having problems running iCloud backups on iOS 9?
6
0
1.4k
Jun ’15
Xcode setting ENABLE_BITCODE
I am compiling my app in the new Xode7-beta and getting these errorsld: warning: URGENT: all bitcode will be dropped because 'xxx' was built without bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. Note: This will be an error in the future.Where in Xcode does one set this?
11
0
57k
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
Reply to Is developing extensions for Safari free?
I guess you have never built a Safar Extension or tried to load one from source? You need a developer certificate to load any extension code into Safari, which means people will now be required to pay 99 USD to load some bits of JavaScript into the browser. So no, you can’t “develop all the Safari extensions you want for free.”
Topic: Safari & Web SubTopic: General Tags:
Jun ’15