Hundreds of accesses to "InputModeProperties.plist" are lagging my game (iPhone) Hundreds of accesses to "InputModeProperties.plist" are lagging my game (iPhone) ios ios

Hundreds of accesses to "InputModeProperties.plist" are lagging my game (iPhone)


EDIT

A decent bug workaround :

Short version: Just delay the bug-triggering calls until user is not annoyed.

Long version:

Since I think the issue is coming from [NSUserDefaults standardUserDefaults] call, that triggers that dirty plist-loading loop AFTER some action requesting Keyboard layouts (like an UIAlert)...

I would suggest to call [NSUserDefaults standardUserDefaults] just one time at app loading (BEFORE any bug-causing call), and keep the returned reference in a singleton class during all app lifecycle. I don't think the memory footprint would be huge... (I'm doing this in several apps w/o any issues). At worse the plist load*100 would be done only once at app load, and not during game.

If the issue comes from [userDefaults setXxxx:...] calls, same workaround, you could just keep values to save in memory and set them later in userDefaults, like just before syncing them... But at the risk of losing informations if anything goes wrong, like a crash. I personally prefer to sync after each set to ensure data integrity...

ENDOFEDIT


The short answer : iOS4.3 bug, very few chances to find a workaround... bugreport and wait for next iOS update... WWDC in 2 weeks... 1~2 month.

The long one:

After looking at UIKit asssembly, here are my guesses:

  • InputModeProperties.plist contains a list of all keyboards layouts by locale.
  • UIKit use this for several things, like when showing a keyboard, to determine available keyboards layouts. (Locales...)
  • One thing is interesting, we can find some of its informations in NSUserDefaults :

    NSLog(@"%@", [[NSUserDefaults standardUserDefaults] dictionaryRepresentation]);==> {AppleKeyboards =     (          // I have two keyboard in preferences   "fr_FR@hw=French;sw=AZERTY", // french  first   "en_US@hw=US;sw=QWERTY"      // english second);...
  • But these informations are not stored in apps preferences, unlike your score. (NSGlobalDomain, or more likely Separate domains for each of the user’s preferred languages)
  • So I would not be surprised a conflict (bug) exists in UIKit + NSUserDefaults causing that dirty plist loading loop.
  • Around 100 call you say? That's something like the number of locale/layouts in the plist!

When no keyboard is available in NSUserDefaults... (Like after synchronizing, let's imagine a bug doing this)... UIKit could try all available keyboards to determine user one, dirtily parsing this 4.4K plist hundred times... Like when showing an UIAlertView... after a NSUSerDefault sync/change.

Who knows? The Apple folks who has the source code :)

I would not be surprised going to preferences to set a keyboard other than default US then reverting to US would solve the issue. Useless in your case, but would confirm the issue. Seen that for another 4.3 bug...

As other people said, not using NSUserDefaults but a simple custom plist in /Documents could be a (in)decent workaround.

Great work on Tiny Wings! :)


Ok, Looking around it seems that InputModeProperties.plist is just a list of hardware & software keyboards.

Looking at the forum thread you posted this issue seems to essentially be that after loading a UITextField object or UIAlertView (which includes UITextInputTraits.h amongst others) whenever you try to save user defaults there is an inexplicable loop of a keyboards definitions file. This only happens in iOS 4.3.

It seems awfully like a bug in UIKit to me and my guess is that suddenly UIKit is saving a load of things for no real purpose. If this is the case it may be hard to do anything about it although you could avoid these elements (not too bad for the alert but the textfield will be trickier) or you could switch to core data. Alternatively, you could make a mutable dictionary for all your options and save that to user defaults when the app closes and you care less about a pause. Or, just ride out an update.

Good luck (love the game btw)


Using UIKit and OpenGL together is not recommended. I don't think that this view is the issue so much as the concept of mixing the two. I highly recommend nixing that alert and instead, show a custom overlay, so that you can accomplish two things:

  1. Make the "Get Ready" alert match the game graphics.
  2. Avoid this problem altogether.

I've seen slow performance with the currently released version on the App Store, when resuming the game on a second generation iPod touch.

If you want to keep those elements as is, this Apple Developer Forum post suggests running the synchronize on a separate thread. Going with that, I would suggest these steps:

  1. As other suggested, keep a reference to NSUserDefaults somewhere. (I usually just do something like this: #define kSettings [NSUserDefaults standardUserDefaults]. Of course, you need to invoke it once to instantiate the singleton.)

  2. Run the synchronize call on a second thread (as per that Apple Developer Forum post).

  3. See if you can call synchronize at some other time than willResignActive. The issue seems a bit worse when you call synchronize from that method.

Congrats on the game.