Search results for

missing package product

50,280 results found

Post

Replies

Boosts

Views

Activity

Adding location in Photos
Hi,Maybe I am missing something (very possible), but as per the announcementEverything in its place.Photos has been fine-tuned to make it even easier to manage your library. Now you can add a location to a single image or to an entire Moment.Has anyone worked out how to do it? Or is the feature not yet in Beta 1.Thanks
2
0
274
Jun ’15
Application is not recognized by Game Center after certificate renewal
I recently renewed my iOS Certificate and now one of my apps that has been on the app store and using game center will no longer let me sign in. When Game Center is trying to authenticateLocalPlayer I get GKErrorDomain Code=15 The requested operation could not be completed because this applicaion is not recognized by Game Center. Also when I go to iTunes Connect I see on my app page in red Leaderboard is not a member of a leaderboard set attached to version 2.0. I don't know what I am missing to get Game Center working again for my device. Any help would be appreciated, thank you!
2
0
1.6k
Jun ’15
Swift and ObjC interoperability
Hi!In the ios-charts repo, I've had to jump through crooked hoops to make everything available in ObjC.Some function interfaces are not exported to ObjC, and you can see an example here:https://github.com/danielgindi/ios-charts/blob/master/Charts/Classes/Components/ChartLegend.swiftIn the functions `extraColorsObjc`, `colorsObjc` etc.But the weirdest thing is where declaring a variable in the function header as mutable, it prevents the function from being exposed in ObjC for not reason at all!See `setMinimumScaleX`( where I've had to store that variable in a local variable in order to change it unintuitively) in https://github.com/danielgindi/ios-charts/blob/5eefb8fac453d26b65c47f22ab36d484d7de5854/Charts/Classes/Utils/ChartViewPortHandler.swiftNow is there something else that could be done that I'm missing? Maybe a special specifier to make those expose naturally instead of making those hacks?Thanks!Daniel
3
0
712
Jun ’15
Maximum number for LSApplicationQueriesSchemes?
In our POI Finder app Where To? I'm using -canOpenUrl: to detect if compatible directions apps are installed. There are more than 50 supported apps, many of them available in a multitude of country-specific versions with respective country-specific URL schemes.In WWDC session 703 (Privacy and Your App) it was only mentioned that we can white list the needed URL schemes in LSApplicationQueriesSchemes in Info.plist. Also the mechanism for legacy apps built for iOS 8 was described. (The first 50 probed schemes are implicitly whitelisted.)What was missing is a statement about a maximum number of entries allowed in the LSApplicationQueriesSchemes array.We need more than 50 different URL schemes to test for all countries the app is deployed in.
0
0
1.8k
Jun ’15
Lost all old iCloud notes after upgrade to iOS 9 beta
I upgraded my phone to iOS 9 Developer Beta and my MacBook to El Capitan Developer Beta. I had several notes stored on iCloud and they are all now missing.On the desktop Notes app I don't see them at all.On the iPhone, I briefly saw them when I first launched the new Notes app, they were in a separate group called ICLOUD with the option to Copy to iCloud. I selected this and the Notes app crashed. Now when I re-run the app all the notes are gone.Is there any way to recover my notes?
5
0
2.5k
Jun ’15
iOS 8 sporadic certificate pinning issue
Hi,I asked the same question in now archived thread below (sorry I cannot reply to it since it is archived).https://devforums.apple.com/message/1140952#1140952eskimo1 answered with some good guidelines to get memory dumps of the activity and analyze the packets going out and coming in, and so we did. Here are our finidings by looking at the packets.As a fact, our server supports only TLS1.2 and we dont use any third party libraries as HTTP connection frameworks, only Apple's NSURLConnection.1. For successful requests going back and forth between server and iOS client, we always see iOS is using TLS1.22. If there is a network problem (slow connectivity, connection lost while processing ..etc), again iOS uses only TLS1.23. When this particular issue occurrs (while doing the certificate pinning), the iOS sends the requests on TLS1.2 for few times and suddenly it downgrades itself to use TLS1.0 and try to establish a connection with the backend. Hence, server responds with certificate pinning failure err
0
0
296
Jun ’15
Reply to Why does AppleWatch wipe all my data with every iOS update?
I restored it as a part of the developer update for iOS9. Prior to iOS9, on iOS8, this happened for each time there was an update released. I don't understand why I would lose data if I can back-up my iPhone and my iPad and have all of the same apps, settings, and data. There is a 'restore from backup' option upon completing the update, but each time I also have set-up the watch preferences again (age, ***, height, weight) etc. for Activity. It wipes all my previous Activity history. I'm not sure why the back-up even exists because if it were truly a back-up, it would have this data and I wouldn't need to set-up the watch preferences again like it was a brand new Apple Wath each time.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Downgrade watchOS 2 to 1.0.1
I know that as far as i'm concerned, when it comes time for watchOS 3 or whatever, they can have their beta. I'll miss the release by a week or so with my app, but at least i'll get to use my watch for something other than a paperweight while i'm waiting. I no longer trust that apple can keep it together long enough to release a successful os update, beta or otherwise.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
iOS app receipt validation failing
We have several apps live in the iOS store using code to validate the app receipt locally, using the techniques introduced with iOS 7 and documented here :https://developer.apple.com/library/ios/releasenotes/General/ValidateAppStoreReceipt/Chapters/ValidateLocally.html#//apple_ref/doc/uid/TP40010573-CH1-SW2However I have noticed an alarming rate of failure of this code lately, up to the point that we're having trouble even passing App Store review in our last updates, since the code even fails for them. Basically, it looks like the initial receipts on app install/update are invalid, forcing us to refresh it explicitly (which is a bad user experience, forcing the user to enter their App Store login info). This in turn leads to a bad user experience, looking a lot like a bug to the App Review team, even with our own attempts to mitigate this.Once the receipt is refreshed, the validation passes just fine, so it is likely not a problem with our validation code, but rather seems to be a problem with the way Apple
2
0
6.7k
Jun ’15
Reply to Connecting to Superclass Properties
Thanks for the reply. The superclass is a CoreDataFetchedResultsController. It's used to handle all of the heavy lifting with Core Data. The reason for connecting the table to the superclass is so that I can access all of the methods and update the table. I tried the IBOutlet option and could not find it when I tried to connect the tableview. It did not show up as an option when I control click dragged to the viewController that subclassed the superclass. Am I missing something here?I'd be happy to look into the protocol option with Swift 2. Do you have any resource that would explain that process? It doens't look like the documentaion is up to date yet.Take care,Jon
Jun ’15