Re: Global HotKey

2011-02-08 Thread Shazron Abdullah
That's the only way. The parts of Carbon that have 64-bit support removed are the UI parts, much of it is supported in 64-bit form and I haven't heard otherwise from Apple (yet) On 2011-02-07, at 2:01 PM, Daniel Ketel wrote: > Hello List, > > I need to add global hotkey support to my cocoa app

Re: How to approach to write such an app?

2010-11-29 Thread Shazron Abdullah
Use the Keychain. https://github.com/ldandersen/scifihifi-iphone/tree/master/security/ On 2010-11-28, at 8:14 PM, ico wrote: > btw, how can I encrypt those login data such as login name and password in > the iPhone? ___ Cocoa-dev mailing list (Cocoa-

Re: Autorelease Pool Question.

2010-08-24 Thread Shazron Abdullah
It is the same if you are not doing garbage collection (drain hints the gc) drain is the safer bet for all environments On 2010-08-24, at 10:44 PM, Mr. Gecko wrote: > I am wondering if releasing the autorelease pool is the same as draining. If > it's not, will releasing cause the objects not to

Re: iphone large image downloading

2010-08-19 Thread Shazron Abdullah
Write the image data to disk as it comes in instead of putting in a NSData, so that you don't need to put it all in memory. Use NSFileHandle:writeData. On 2010-08-19, at 5:48 AM, SanthoshKumarGundu wrote: > Hi all, > > I have modified my code to send asynchronous request using the below > > NS