User Ken - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T10:36:08Zhttp://stackoverflow.com/feeds/user/17320http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1778227/string-manipulation-in-objective-c/1778233#17782331Answer by Ken for String Manipulation in Objective-CKen2009-11-22T09:10:07Z2009-11-22T09:10:07Z<p>Those are all written up very clearly in <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSString%5FClass/Reference/NSString.html" rel="nofollow">the documentation</a>.</p>
http://stackoverflow.com/questions/1670727/trouble-creating-an-itunes-style-source-list-in-cocoa/1671260#16712601Answer by Ken for Trouble creating an iTunes style source list in CocoaKen2009-11-04T01:48:06Z2009-11-04T01:48:06Z<p>See <a href="http://stackoverflow.com/questions/241507/how-would-one-implement-a-sidebar-similar-to-mail-itunes-finder-etc-in-cocoa-ib/241853#241853">http://stackoverflow.com/questions/241507/how-would-one-implement-a-sidebar-similar-to-mail-itunes-finder-etc-in-cocoa-ib/241853#241853</a>.</p>
http://stackoverflow.com/questions/1608230/will-the-system-send-an-nswillbecomemultithreadednotification-when-i-create-posix/1608720#16087201Answer by Ken for Will the system send an NSWillBecomeMultiThreadedNotification when I create POSIX threads?Ken2009-10-22T17:25:44Z2009-10-22T17:25:44Z<p>From <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/Multithreading/CreatingThreads/CreatingThreads.html#//apple%5Fref/doc/uid/10000057i-CH15-SW12" rel="nofollow">the docs</a>:</p>
<blockquote>
<p>Protecting the Cocoa Frameworks For
multithreaded applications, Cocoa
frameworks use locks and other forms
of internal synchronization to ensure
they behave correctly. To prevent
these locks from degrading performance
in the single-threaded case, however,
Cocoa does not create them until the
application spawns its first new
thread using the NSThread class. If
you spawn threads using only POSIX
thread routines, Cocoa does not
receive the notifications it needs to
know that your application is now
multithreaded. When that happens,
operations involving the Cocoa
frameworks may destabilize or crash
your application.</p>
<p>To let Cocoa know that you intend to
use multiple threads, all you have to
do is spawn a single thread using the
NSThread class and let that thread
immediately exit. Your thread entry
point need not do anything. Just the
act of spawning a thread using
NSThread is enough to ensure that the
locks needed by the Cocoa frameworks
are put in place.</p>
<p>If you are not sure if Cocoa thinks
your application is multithreaded or
not, you can use the isMultiThreaded
method of NSThread to check.</p>
</blockquote>
http://stackoverflow.com/questions/1604673/how-do-i-embed-data-into-a-mac-os-x-mach-o-binary-files-text-section/1605237#16052372Answer by Ken for How do I embed data into a Mac OS X mach-o binary file's TEXT Section?Ken2009-10-22T05:47:54Z2009-10-22T05:47:54Z<p>The linker, ld, takes an argument -sectcreate.</p>
<p>From the man page,</p>
<blockquote>
<pre><code> -sectcreate segname sectname file
The section sectname in the segment segname is created from
the contents of file file. The combination of segname and
sectname must be unique there cannot already be a
section (segname,sectname) from any other input.
</code></pre>
</blockquote>
<p>GCC also has a <a href="http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Variable-Attributes.html#index-g%5Ft%5F0040code%5F007bsection%5F007d-variable-attribute-2319" rel="nofollow">section</a> attribute that can be applied to a variable to say that it belongs in a non-standard section.</p>
http://stackoverflow.com/questions/1595912/do-i-have-to-put-my-application-manually-into-multithreaded-mode-if-i-want-to-use/1595950#15959502Answer by Ken for Do I have to put my application manually into multithreaded-mode if I want to use threads?Ken2009-10-20T16:50:51Z2009-10-20T16:50:51Z<p>It's automatic. In the docs for that method:</p>
<blockquote>
<p>If this thread is the first thread
detached in the application, this
method posts the
NSWillBecomeMultiThreadedNotification
with object nil to the default
notification center.</p>
</blockquote>
<p>GUI Cocoa apps are pretty much always multithreaded these days.</p>
http://stackoverflow.com/questions/1556096/saving-interface-builder-changes-when-building-in-xcode/1593432#15934321Answer by Ken for Saving Interface Builder Changes when building in XCodeKen2009-10-20T09:25:54Z2009-10-20T09:25:54Z<p>Are you perhaps running 32 bit while he is running 64 bit?</p>
<p>I seem to recall an issue with IB's AppleEvent-based communication with Xcode in 64 bit.</p>
http://stackoverflow.com/questions/1591589/cocoa-api-image-manipulation/1591893#15918934Answer by Ken for Cocoa API Image ManipulationKen2009-10-20T00:37:37Z2009-10-20T00:37:37Z<p>If you want to present UI to allow the user to make these kinds of modifications, look at <a href="http://developer.apple.com/mac/library/documentation/GraphicsImaging/Conceptual/ImageKitProgrammingGuide/ImageViews/ImageViews.html#//apple%5Fref/doc/uid/TP40004907-CH4-SW9" rel="nofollow">ImageKit</a>. </p>
http://stackoverflow.com/questions/1590095/difference-between-object-and-nsobject/1590216#15902163Answer by Ken for Difference Between Object And NSObjectKen2009-10-19T18:09:49Z2009-10-19T18:09:49Z<p>You should ignore Object. </p>
<p>Objective-C allows multiple root classes. Object is a root class that predates NSObject. It's never something you would want to go use. It's only relevant when something somehow already interacts with Object, so you have to deal with it. This is very rare.</p>
<p>Object doesn't implement <code>-retain</code> and <code>-release</code>, for example.</p>
http://stackoverflow.com/questions/1578057/cgbitmapcontext-get-pixel-value-leopard-vs-snowleopard-confusion/1580141#15801412Answer by Ken for CGBitmapContext get pixel value Leopard vs. SnowLeopard confusionKen2009-10-16T20:01:48Z2009-10-16T20:01:48Z<p>Take a look at the docs for CGContextSetRGBFillColor.</p>
<blockquote>
<p>CGContextSetRGBFillColor Sets the
current fill color to a value in the
DeviceRGB color space.</p>
</blockquote>
<p>You wanted your components to be with respect to the generic RGB space. So, use one of the other methods of setting the fill color.</p>
http://stackoverflow.com/questions/1573968/xcode-source-automatic-formatting/1574005#15740052Answer by Ken for Xcode source automatic formattingKen2009-10-15T17:50:09Z2009-10-15T17:50:09Z<p>That's Control- I.</p>
<p>Or for low-tech, cut and then paste. It'll reformat on paste.</p>
http://stackoverflow.com/questions/1571289/iphone-memory-management-no-need-to-clean-up-and-release-retained-objects-on-app/1571342#15713424Answer by Ken for iPhone Memory Management: No Need to Clean Up and Release Retained Objects on App Quit?Ken2009-10-15T09:48:06Z2009-10-15T09:48:06Z<p>Yes. Quoting <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmObjectOwnership.html#//apple%5Fref/doc/uid/20000043" rel="nofollow">the documentation</a>:</p>
<blockquote>
<p>Important: When an application
terminates, objects may not be sent a
dealloc message since the process’s
memory is automatically cleared on
exit—it is more efficient simply to
allow the operating system to clean up
resources than to invoke all the
memory management methods. This has
implications for how you implement a
dealloc method—see “Resource
Management.”</p>
</blockquote>
http://stackoverflow.com/questions/1562959/clearing-the-alpha-channel-of-an-nsimage/1563357#15633571Answer by Ken for Clearing the alpha channel of an NSImageKen2009-10-13T22:42:19Z2009-10-13T22:42:19Z<p>(1) Please read the AppKit release notes on the subject of image mutability. NSImage should basically be treated as immutable.</p>
<p>(2) All of the <a href="http://developer.apple.com/mac/library/documentation/GraphicsImaging/Conceptual/drawingwithquartz2d/dq%5Fcontext/dq%5Fcontext.html#//apple%5Fref/doc/uid/TP30001066-CH203-BCIBHHBB" rel="nofollow">pixel formats supported in graphics contexts</a> have <a href="http://www.gimp.org/docs/plug-in/appendix-alpha.html" rel="nofollow">premultiplied alpha</a>. If the alpha channel is zero, the other channels have to be zero too. </p>
http://stackoverflow.com/questions/1525933/examples-of-interpreters-embedded-in-iphone-applications/1540790#15407902Answer by Ken for Examples of interpreters embedded in iPhone Applications?Ken2009-10-08T22:09:59Z2009-10-08T22:09:59Z<p>There's <a href="http://floatopian.com/~reddaly/nu-iphone.html" rel="nofollow">Nu</a>.</p>
<p>Nu is a Lisp-on-ObjC-runtime thing. The link above is to information on iPhone embedding. The language homepage is <a href="http://programming.nu/" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1540603/mac-iphone-is-there-a-way-to-get-a-thread-identifier-without-using-objective-c/1540739#15407391Answer by Ken for Mac/iPhone: Is there a way to get a thread identifier without using Objective-C?Ken2009-10-08T21:59:23Z2009-10-08T21:59:23Z<p>See <code>pthread_getname_np</code>. </p>
<p>Unfortunately NSThread's name is not currently pushed down to that. The NSThread name is just an ivar, so there will be no way to get at it except through the method. You could always make a C function that makes the autorelease pool and gets the name. Your C++ code then doesn't have to be compiled as ObjC++.</p>
<p><code>pthread_getname_np</code> is probably a bit more useful than NSThread's name right now anyway. gdb and Instruments don't know about NSThread's name, only the pthread level name. </p>
http://stackoverflow.com/questions/1539017/nsarray-with-c-types/1539634#15396341Answer by Ken for NSArray with C types?Ken2009-10-08T18:28:15Z2009-10-08T18:28:15Z<p>This is a multipart answer. In the end, the answer for you is going to be "you can do this".</p>
<p>(1) NSArray cannot handle general C types. If you're interested in this kind of thing, CFArray can be outfitted with custom callbacks for storing other kinds of data. Caveat: Normally you can pass a CFArray to any NSArray taking API - they're bridged. This does not apply to CFArrays with custom callbacks. </p>
<p>(2) CGLayerRef is not any old C type, it's a CFType. CFType is bridged to NSObject. Sending <code>-retain</code> and <code>-release</code> to any CFType works just as it would on an NSObject. If you were to put a category on NSObject implementing <code>-foo</code> and then cast some random CFType to id and send it the -foo message, you'd see your implementation of <code>foo</code> invoked.</p>
<p>So, the compiler warning here is the only problem. You can cast to (id) to avoid it. All of this is supported.</p>
<p>Ken Ferry</p>
<p>Cocoa Frameworks</p>
http://stackoverflow.com/questions/1526882/how-do-i-get-the-gcc-attribute-constructor-to-work-under-osx/1528552#15285523Answer by Ken for How do I get the GCC __attribute__ ((constructor)) to work under OSX?Ken2009-10-06T23:03:30Z2009-10-06T23:03:30Z<p>(a) Your code works for me compiling and running on SnowLeopard in Xcode 3.2.</p>
<p>(b) I'm not sure when stdout is guaranteed to have been set up. You're running code before main. Why not update a global variable here, then print it out in main to see if your code ran.</p>
http://stackoverflow.com/questions/1475442/can-i-use-a-memory-zone-to-kill-iphone-leaks/1475464#14754641Answer by Ken for Can I use a memory zone to kill iPhone leaks?Ken2009-09-25T04:39:50Z2009-09-25T04:39:50Z<p>What you're discussing was part of the original thought with zones, but that aspect hasn't worked out so well. </p>
<p>The way to avoid leaking is just to avoid leaking. Free what you malloc, -release the objects you need to release.</p>
http://stackoverflow.com/questions/1447504/setleftcapwidth-on-the-mac/1450526#14505260Answer by Ken for setLeftCapWidth on the mac?Ken2009-09-20T07:31:29Z2009-09-20T07:31:29Z<p>Assuming that what you want to do is draw button-like artwork that consists of a left image, a right image, and a tiled center image, then see <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/ApplicationKit/Miscellaneous/AppKit%5FFunctions/Reference/reference.html#//apple%5Fref/c/func/NSDrawThreePartImage" rel="nofollow">NSDrawThreePartImage</a>.</p>
http://stackoverflow.com/questions/1436826/why-doesnt-os-x-have-the-same-flickering-problems-that-windows-does/1437175#143717511Answer by Ken for Why doesn't OS X have the same flickering problems that Windows does?Ken2009-09-17T07:11:37Z2009-09-17T07:38:55Z<p>Mac OS X has <a href="http://en.wikipedia.org/wiki/Double%5Fbuffering" rel="nofollow">double buffered windows</a>. </p>
<p>You don't have to do anything to make it happen. It's behind the scenes.</p>
<p>You (almost always) don't explicitly draw to a window in Cocoa when something changes, you invalidate a region of the window. The framework will later descend the hierarchy of views and draw the dirty regions of the window into a secondary buffer. Then it swaps the buffers.</p>
<p>You can optionally make some promises that allow the framework to take shortcuts when redrawing, but they're all opt-in. Only savvy views are affected.</p>
<p>If your subclass of NSView implements the <code>isOpaque</code> method to return YES, then the framework will never clear anything behind your view or draw any of the views under it. </p>
<p>Implementing <code>preservesContentDuringLiveResize</code> to return YES gives you some extra responsibilities, but can improve performance during window resizing.</p>
<p>10.6 added another two new APIs of this sort, <code>layerContentsRedrawPolicy</code> and <code>layerContentsPlacement</code>.</p>
<p>Last, custom drawing is less common than on Windows. The majority of views you see are framework-supplied and not subclassed. Framework-supplied means optimized-by-apple.</p>
http://stackoverflow.com/questions/1436465/iphone-multiple-cgbitmapcontextcreateimage-calls-objectalloc-climbing/1436503#14365030Answer by Ken for iPhone - Multiple CGBitmapContextCreateImage Calls - ObjectAlloc climbingKen2009-09-17T02:52:11Z2009-09-17T02:52:11Z<p>That code overreleases <code>result</code>. </p>
<p>That said, it's likely that the issue is that the UIImage is not getting deallocated, and the UIImage is holding onto the CGImage, and the CGImage is holding onto the memory that was allocated under CGBitmapContextCreate.</p>
<p>Use instruments to see if UIImages are not getting deallocated, and if so try to debug why.</p>
http://stackoverflow.com/questions/1429888/best-practice-and-rationale-import-in-m-or-h/1430587#14305871Answer by Ken for Best practice and rationale: #import in .m or .hKen2009-09-16T02:13:27Z2009-09-16T02:13:27Z<p>Everything else aside, it's also a performance win for compile times. When you <code>#import</code> a file, it's as if you pasted the contents of the file into your header. That's more stuff for the compiler to get through when compiling your code.</p>
<p>See this <a href="http://clang.llvm.org/performance.html" rel="nofollow">page about Clang compiler performance</a>. </p>
<p>Note that precompiled headers alleviate much of the problem in the case of standard headers like Cocoa.h.</p>
http://stackoverflow.com/questions/1423547/apple-mail-adds-n-about-every-72-characters-or-so-how-do-i-strip-these-and-pre/1425028#14250281Answer by Ken for apple mail adds \n about every 72 characters or so - how do I strip these and preserve actual \nKen2009-09-15T03:47:00Z2009-09-15T03:47:00Z<p>It looks to me like the soft breaks are all preceded by a space character, while the hard breaks are all not.</p>
<p>When I try to compose a message that has a space right before a hard break, Mail strips the space on send.</p>
http://stackoverflow.com/questions/1424391/define-value-in-stringformat/1424408#14244087Answer by Ken for #define value in stringFormat ?Ken2009-09-14T23:30:48Z2009-09-14T23:30:48Z<p>You've #defined it as a C string.</p>
<p>If you want it as an Objective-C String, you need </p>
<pre><code>#define kPingServerToSeeIfInternetIsOn @"http://10.0.0.8"
</code></pre>
http://stackoverflow.com/questions/1402922/getting-involved-with-the-mac-developer-community/1403997#14039970Answer by Ken for Getting involved with the Mac developer communityKen2009-09-10T08:15:05Z2009-09-10T08:15:05Z<p>My favorite source besides the docs are the Cocoa weblogs. <a href="http://www.planetcocoa.org/" rel="nofollow">Planet Cocoa</a> aggregates some of them. </p>
<p>Apple's <a href="http://lists.apple.com/mailman/listinfo/cocoa-dev" rel="nofollow">Cocoa mailing list</a> is where I see the most action for desktop Cocoa, far more than here. The forums are probably the primary place to ask questions for iPhone stuff.</p>
<p>There are also IRC channels on freenode. <a href="http://irc%3A//irc.freenode.net/#webkit" rel="nofollow">webkit</a> is great if you're using it. <a href="http://irc%3A//irc.freenode.net/#macdev" rel="nofollow">macdev</a> always has knowledgeable people in it, though they may or may not feel like helping.</p>
http://stackoverflow.com/questions/1394858/opinions-on-using-my-as-a-class-name-prefix/1395630#13956300Answer by Ken for Opinions on using My as a class name prefixKen2009-09-08T18:43:30Z2009-09-08T18:43:30Z<p>As far as I've ever seen, <code>My</code> is a prefix used in sample code that indicates "your stuff goes here". </p>
<p>It's kind of like <code>foo</code>. Teaching purposes only.</p>
http://stackoverflow.com/questions/1392321/how-do-i-create-a-mutable-array-of-cgimagerefs/1392445#13924451Answer by Ken for How do I create a mutable array of CGImageRefs?Ken2009-09-08T07:16:17Z2009-09-08T07:16:17Z<p>You can directly add CGImage to NSMutableArray. You will need to cast to (id) to avoid compiler warnings. </p>
<p>CFType is bridged to NSObject. You can send any message NSObject responds to to any CFType. In particular, -retain and -release work as normal.</p>
http://stackoverflow.com/questions/1391914/what-does-arraywitharray-actually-do/1391972#13919721Answer by Ken for what does -arrayWithArray actually DO?Ken2009-09-08T04:32:32Z2009-09-08T04:40:14Z<p>No, Cocoa is not open source.</p>
<p>If you have a question, you should just ask it. </p>
<p>This would be one valid way to implement it:</p>
<pre><code>+ (id)arrayWithArray:(NSArray *)array {
return [[[self alloc] initWithArray:array] autorelease];
}
</code></pre>
<p>You can read the GNUStep source for <a href="http://cvs.savannah.gnu.org/viewvc/gnustep/core/base/Source/NSArray.m?root=gnustep&view=markup" rel="nofollow">NSArray</a>, but be aware that this is an alternate implementation of the Cocoa APIs.</p>
http://stackoverflow.com/questions/1384284/how-does-one-automatically-attach-a-debugger-to-a-process-at-process-start-on-os/1384310#13843102Answer by Ken for How does one automatically attach a debugger to a process at process start on OS X?Ken2009-09-05T21:34:08Z2009-09-05T21:34:08Z<p>Use gdb --wait. For example, try</p>
<pre><code>gdb --wait TextEdit
</code></pre>
<p>from the command line, then launch TextEdit.</p>
http://stackoverflow.com/questions/1376273/objective-c-error-messages/1376476#13764761Answer by Ken for Objective C error messagesKen2009-09-03T23:23:40Z2009-09-03T23:23:40Z<p>Is this relevant? From the <a href="http://developer.apple.com/mac/library/releasenotes/DeveloperTools/RN-Xcode/" rel="nofollow">Xcode release notes</a>:</p>
<blockquote>
<p>Note: GCC 4.2 cannot be used with the
Mac OS X 10.4u SDK. If you want to
build targets using the 10.4u SDK on
Xcode 3.2, you must set the Compiler
Version to GCC 4.0</p>
</blockquote>
http://stackoverflow.com/questions/1375759/how-to-write-a-macro-that-can-take-a-parameter/1375815#13758152Answer by Ken for How to write a macro that can take a parameter? Ken2009-09-03T20:38:40Z2009-09-03T20:38:40Z<p>Take a look at the <a href="http://gcc.gnu.org/onlinedocs/cpp/Macro-Arguments.html#Macro-Arguments" rel="nofollow">macro docs</a>. </p>
http://stackoverflow.com/questions/1798709/xcode-breakpoint-nsexceptionraise-vs-nsexceptionraise/1798821#1798821Comment by Ken on XCode breakpoint [NSExceptionRaise] vs -[NSExceptionRaise]Ken2009-11-25T18:29:22Z2009-11-25T18:29:22ZAs of 10.5, -[NSException raise] calls objc_exception_throw. This is why you don't need both.http://stackoverflow.com/questions/1619561/whats-the-best-way-to-find-if-the-processor-type-is-ppc-or-intel-in-cocoa-do-i/1619587#1619587Comment by Ken on What's the best way to find if the processor type is PPC or Intel in Cocoa? (Do I have to use Carbon?)Ken2009-10-25T08:17:14Z2009-10-25T08:17:14ZStephen's answer gives it to you at runtime. Do that, then write <code>processorType</code> into your config file.http://stackoverflow.com/questions/1592254/how-should-i-construct-an-nsdictionary-with-multiple-keys/1592465#1592465Comment by Ken on How should I construct an NSDictionary with multiple keys?Ken2009-10-20T07:01:23Z2009-10-20T07:01:23ZIf you implement isEqual: you absolutely have to implement -hash. The invariant is that if [a isEqual:b], then [a hash] must == [b hash].http://stackoverflow.com/questions/1590095/difference-between-object-and-nsobject/1590216#1590216Comment by Ken on Difference Between Object And NSObjectKen2009-10-20T01:36:53Z2009-10-20T01:36:53ZNot 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.http://stackoverflow.com/questions/1578057/cgbitmapcontext-get-pixel-value-leopard-vs-snowleopard-confusionComment by Ken on CGBitmapContext get pixel value Leopard vs. SnowLeopard confusionKen2009-10-16T18:10:49Z2009-10-16T18:10:49ZPlease add fully compiling and verifiable code to this question. The part with the problem is probably not discussed here.http://stackoverflow.com/questions/1575819/objective-c-send-message-to-deallocated-object-is-working-why/1575825#1575825Comment by Ken on Objective-C - send message to deallocated object is working! why???Ken2009-10-16T05:22:30Z2009-10-16T05:22:30ZThe 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.http://stackoverflow.com/questions/1525933/examples-of-interpreters-embedded-in-iphone-applications/1560837#1560837Comment by Ken on Examples of interpreters embedded in iPhone Applications?Ken2009-10-15T20:35:41Z2009-10-15T20:35:41ZI 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: <a href="http://video.google.com/videoplay?docid=-2563969716754696790" rel="nofollow">video.google.com/videoplay?docid=-256396971675469…</a>http://stackoverflow.com/questions/1569956/copy-ui-element-in-objective-cComment by Ken on Copy UI element in Objective-CKen2009-10-15T02:57:12Z2009-10-15T02:57:12ZIrrespective 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.http://stackoverflow.com/questions/1525933/examples-of-interpreters-embedded-in-iphone-applications/1560837#1560837Comment by Ken on Examples of interpreters embedded in iPhone Applications?Ken2009-10-13T15:40:00Z2009-10-13T15:40:00ZThese 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.http://stackoverflow.com/questions/1529126/alternative-language-to-do-cocoa-programmingComment by Ken on Alternative language to do Cocoa programmingKen2009-10-07T02:08:20Z2009-10-07T02:08:20ZPlease 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.http://stackoverflow.com/questions/1528696/objective-c-where-do-you-dealloc-global-static-variables/1528920#1528920Comment by Ken on Objective C - Where do you dealloc global static variables?Ken2009-10-07T01:01:02Z2009-10-07T01:01:02ZYes, this is bad - just let the OS clean it up. There's no point to doing work here. You're just delaying app quit.http://stackoverflow.com/questions/1526882/how-do-i-get-the-gcc-attribute-constructor-to-work-under-osx/1526939#1526939Comment by Ken on How do I get the GCC __attribute__ ((constructor)) to work under OSX?Ken2009-10-07T00:30:44Z2009-10-07T00:30:44ZAre 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.http://stackoverflow.com/questions/1528120/nslevelindicator-cocoaComment by Ken on NSLevelIndicator - CocoaKen2009-10-06T22:58:57Z2009-10-06T22:58:57ZThis is too generic to answer. See <<a href="http://catb.org/~esr/faqs/smart-questions.html>" rel="nofollow">catb.org/~esr/faqs/smart-questions.html></a>;. 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.http://stackoverflow.com/questions/1447504/setleftcapwidth-on-the-mac/1450526#1450526Comment by Ken on setLeftCapWidth on the mac?Ken2009-09-20T16:17:06Z2009-09-20T16:17:06ZThe comments in the header describe exactly how everything is scaled.http://stackoverflow.com/questions/1441986/is-there-a-more-performant-way-of-animating-an-image-sequence/1442003#1442003Comment by Ken on Is there a more performant way of animating an image sequence?Ken2009-09-18T02:35:09Z2009-09-18T02:35:09Z(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.