Ken

1,638
Reputation
61 views

Registered User

Name Ken
Member for 1 year
Seen 1 hour ago
Website
Location San Francisco Bay Area
Age
Nov
25
comment XCode breakpoint [NSExceptionRaise] vs -[NSExceptionRaise]
As of 10.5, -[NSException raise] calls objc_exception_throw. This is why you don't need both.
Nov
22
answered String Manipulation in Objective-C
Nov
4
answered Trouble creating an iTunes style source list in Cocoa
Oct
25
comment What’s the best way to find if the processor type is PPC or Intel in Cocoa? (Do I have to use Carbon?)
Stephen's answer gives it to you at runtime. Do that, then write processorType into your config file.
Oct
22
answered Will the system send an NSWillBecomeMultiThreadedNotification when I create POSIX threads?
Oct
22
accepted How do I embed data into a Mac OS X mach-o binary file’s TEXT Section?
Oct
22
answered How do I embed data into a Mac OS X mach-o binary file’s TEXT Section?
Oct
20
accepted Do I have to put my application manually into multithreaded-mode if I want to use threads?
Oct
20
answered Do I have to put my application manually into multithreaded-mode if I want to use threads?
Oct
20
answered Saving Interface Builder Changes when building in XCode
Oct
20
accepted iPhone Memory Management: No Need to Clean Up and Release Retained Objects on App Quit?
Oct
20
comment How should I construct an NSDictionary with multiple keys?
If you implement isEqual: you absolutely have to implement -hash. The invariant is that if [a isEqual:b], then [a hash] must == [b hash].
Oct
20
accepted Cocoa API Image Manipulation
Oct
20
comment Difference Between Object And NSObject
Not quite sure what you mean, but probably yes. You might also want to ignore the tutorial you linked that uses Object. I think you'll have a hard time finding any others that refer to it.
Oct
20
answered Cocoa API Image Manipulation
Oct
19
accepted Difference Between Object And NSObject
Oct
19
answered Difference Between Object And NSObject
Oct
16
accepted CGBitmapContext get pixel value Leopard vs. SnowLeopard confusion
Oct
16
answered CGBitmapContext get pixel value Leopard vs. SnowLeopard confusion
Oct
16
accepted Clearing the alpha channel of an NSImage
Oct
16
comment CGBitmapContext get pixel value Leopard vs. SnowLeopard confusion
Please add fully compiling and verifiable code to this question. The part with the problem is probably not discussed here.
Oct
16
comment Objective-C - send message to deallocated object is working! why???
The memory is not so much "marked for destruction" as "available for reuse by something else". But nothing explicitly overwrites the freed memory right when its freed.
Oct
15
comment Examples of interpreters embedded in iPhone Applications?
I use F-Script embedded in the app as a dev tool. Take a look at F-Script Anywhere. Or, for a quick demo jump to the 30 minute mark in this tech talk: video.google.com/videoplay?docid=-256396971675469…
Oct
15
answered Xcode source automatic formatting
Oct
15
answered iPhone Memory Management: No Need to Clean Up and Release Retained Objects on App Quit?
Oct
15
comment Copy UI element in Objective-C
Irrespective of how you copy it, this code is incredibly fragile. You are relying on the pattern of views in the hierarchy. One change to that between OS releases and your app will immediately crash.
Oct
13
answered Clearing the alpha channel of an NSImage
Oct
13
comment Examples of interpreters embedded in iPhone Applications?
These are specifically not capable of doing interpretation. They get compiled ahead of time. The poster seems to be after something that is more an extension of the IDE than of the program. This is how I use F-Script (on the mac), and it is very useful this way.
Oct
9
accepted NSArray with C types?
Oct
8
answered Examples of interpreters embedded in iPhone Applications?
Oct
8
answered Mac/iPhone: Is there a way to get a thread identifier without using Objective-C?
Oct
8
answered NSArray with C types?
Oct
7
comment Alternative language to do Cocoa programming
Please realize - if you use a non-Objective-C binding, you are really just going to make more work for yourself as a beginner. It will not get you out of understanding ObjC, it will just add a layer of indirection. ObjC is an easy language, lots of people like it, just go with it. After you know what you're doing you can consider a language binding.
Oct
7
accepted How do I get the GCC __attribute__ ((constructor)) to work under OSX?
Oct
7
comment Objective C - Where do you dealloc global static variables?
Yes, this is bad - just let the OS clean it up. There's no point to doing work here. You're just delaying app quit.
Oct
7
comment How do I get the GCC __attribute__ ((constructor)) to work under OSX?
Are you not using Mac OS X? I think you're giving reasons why it could fail, not why this person is having problems. It works fine for me.
Oct
6
answered How do I get the GCC __attribute__ ((constructor)) to work under OSX?
Oct
6
comment NSLevelIndicator - Cocoa
This is too generic to answer. See <catb.org/~esr/faqs/smart-questions.html>;. For example, do you need to be told how to make a new Xcode project? Probably not, but we cannot tell what you do and do not know how to do.
Sep
29
awarded  
Sep
25
answered Can I use a memory zone to kill iPhone leaks?
Sep
24
awarded  Nice Answer
Sep
22
accepted apple mail adds \n about every 72 characters or so - how do I strip these and preserve actual \n
Sep
20
comment setLeftCapWidth on the mac?
The comments in the header describe exactly how everything is scaled.
Sep
20
answered setLeftCapWidth on the mac?
Sep
19
accepted Current Text Direction (BiDi support) in Cocoa?
Sep
19
awarded  Yearling
Sep
18
comment Is there a more performant way of animating an image sequence?
(1) In the 3.0 software, +[UIImage imageNamed:] releases cached images if it receives a low memory warning. (2) Even if it did permanently cache, that only matters if you don't otherwise expect the images to live for the lifetime of your app. So, while the technique you gave is fine, so is +[UIImage imageNamed:]. It isn't evil.
Sep
17
revised Why doesn’t OS X have the same flickering problems that Windows does?
added 594 characters in body; added 187 characters in body; deleted 11 characters in body
Sep
17
revised Why doesn’t OS X have the same flickering problems that Windows does?
added 357 characters in body
Sep
17
answered Why doesn’t OS X have the same flickering problems that Windows does?