Re: Localization based on location

2012-06-03 Thread Georg Tuparev
I believe AppStore's behavior is wrong and against Apple's own guidelines, that clearly state, that user's preferences come always first. My colleagues, friends, and I filed countless radars about iTunes and AppStore... cheers g. On Jun 3, 2012, at 1:24 PM, John Tall wrote: > An obvious scen

Re: Localization based on location

2012-06-03 Thread M Pulis
App Store is simply a starting point... On launch we adjust our UI based on the user preferences, a Canadian user can be French Canadian, or if close to the border and commutes, could choose US English or Canadian ad infinitum... our app contains all (of our) supported localizations.

Localization based on location

2012-06-03 Thread John Tall
Hello. We currently have an iOS app available in English. We have decided to localize it into other languages, but first we wanted to look into how other companies are doing it in order to determine what the best practices would be. When we looked at how Apple localizes their apps we found someth

FSEventStream advice

2012-06-03 Thread Graham Cox
I've traced the source of my memory corruption (cf) to a piece of 3rd party code that monitors for directory changes using kqueue(). This hasn't given any trouble for years, but now I'm making a lot of hardworking threads the bug is making itself known. I'm going to see if it's something obviou

Re: NSOperationQueue

2012-06-03 Thread Graham Cox
On 03/06/2012, at 5:29 PM, Charles Srstka wrote: > Since you’ve evidently already figured out a way to determine what images are > visible in the view, just set up an NSMapTable or an NSDictionary mapping > image URLs to operations, and then you know which operations correspond to > the visibl

Re: NSOperationQueue

2012-06-03 Thread Charles Srstka
On Jun 3, 2012, at 1:23 AM, Graham Cox wrote: > define "the visible objects" when what you have at hand is not a visual > object at all, but an object whose job is to make an image from some data. I’ll go with whatever you meant when you said: On Jun 2, 2012, at 12:34 AM, Graham Cox wrote: >

Re: NSOperationQueue

2012-06-03 Thread Graham Cox
On 03/06/2012, at 4:54 PM, Kyle Sluder wrote: > If IKImageView's architecture is proving to be a problem, perhaps it's time > to consider ditching IKImageView. I'm certainly going to give that some serious thought. In fact my scheme is now working fairly well, at least when I run it from Xcod