Pin entry box

2010-07-16 Thread Allyn Bauer
Hello, Has anybody ever needed to make a pin number entry box similar to the one in the Preferences used to set the passcode? I'd appreciate links if you have them. I'm having problems getting the text to always be 'secure' and allowing only one digit per box. Any tips? Thanks, Allyn Bauer

Re: Cocoa witch's broom

2011-04-14 Thread Allyn Bauer
I'm not sure creating a program to use every method in Cocoa is such a great idea. What you should probably do instead is pick a small simple idea and implement it. Perhaps you can make an app that lists the native trees of Brazil and their diseases. :) Allyn On Apr 14, 2011, at 9:28 AM, Rodri

Re: objects and "global / shared data"

2011-05-03 Thread Allyn Bauer
(replying to all this time).. A singleton may be an appropriate solution to this problem. Their usage is not perfect but few tools are. That said, "DataHandler" should probably not be the singleton. That is the class you created to read the file. If it doesn't make sense to create another obje

app store policy question

2011-06-02 Thread Allyn Bauer
We are developing a platform that will have a mobile component. Each licensee (in this case, Banks and Credit Unions) would have their own mobile app. We are going back and forth between releasing one app in the App Store and having some sort of login procedure for the users of each respective i

rotate UIImage based on rotation of UIView

2010-12-02 Thread Allyn Bauer
lly (often) it won't have any of the image at all. I suspect that the issue is the result of a fundamental misunderstanding of something on my part, but I can't figure out what that would be. Any help with the code or advice on the problem would be absolutely fantastic. Regards, Allyn Ba

Re: tips on managing group rows

2012-04-16 Thread Allyn Bauer
Probably what you want to do is what you suggest - make an object. Other options include an array of arrays, of dictionaries, or of nsvalue instances containing structs. Depending on your needs. Try an object first. On Apr 16, 2012 10:25 PM, "Rick C." wrote: > > Hi, > > So I'm working on a view-ba

how to archive NSNetService?

2009-01-16 Thread Allyn Bauer
Hello all, I'm writing a fairly simple server <-> client app. The server publishes a network name using Bonjour and clients get a list of names. They choose one (for now). After this choice, I would like the selection to somehow be saved using NSUserDefaults. I'm assuming the easiest way to do this

Distributed Objects question

2009-02-09 Thread Allyn Bauer
Hey all, I've got a fairly simple server <-> client app in development. The clients need to be able to communicate with the server and the server needs to be able to communicate with the clients. So far I've got the clients getting a NSMutableArray from the server fine, but I cannot figure out how

Re: Distributed Objects question

2009-02-10 Thread Allyn Bauer
, I'd really appreciate it if you could steer me a little more in the right direction. Thanks, Allyn On Mon, Feb 9, 2009 at 4:48 PM, Ken Thomases wrote: > On Feb 9, 2009, at 4:33 PM, Allyn Bauer wrote: > >> Hey all, I've got a fairly simple server <-> client app in >&

Re: Retrieving the EXIF date/time from 250k images

2022-08-14 Thread Allyn Bauer via Cocoa-dev
Sorry if there's dupe emails. I think an important question here is, what exactly are you trying to do? Do you really expect to process these images repeatedly? 3.5m for a quarter million pics isn't terrible when one already possesses a working solution. If you have a specific task in mind, it wou