eJames

12,463
Reputation
876 views

Registered User

name eJames
member for 1 year
seen 5 hours ago
website
location Canada
age 29
I code, therefore I am.
6h
comment How do I deal with typing nested message calls in ObjC source from only the keyboard?
+1 for TextMate
15h
awarded  Favorite Question
1d
awarded  Mortarboard
Dec
4
accepted How can I convert hex number to integers and strings in Objective C?
Dec
1
comment objectForKey stringValue crashing my app?
I think you have to test for testObject==[NSNull null] to properly identify the NSNull value. NSNull by itself is a Class, but the actual object stored in the dictionary would be the singleton instance [NSNull null]
Dec
1
answered objectForKey stringValue crashing my app?
Nov
30
comment How to help a struggling newbie do a better job?
I would say no. It is an honest assessment, even if it does sound a bit harsh. "Underperforming" implies the possibility (and expectation) of improvement. Besides, the original title would still appear in the history.
Nov
30
answered How to help a struggling newbie do a better job?
Nov
28
comment Averaging angles… Again
@cobbal: isn't that correct?
Nov
28
comment Averaging angles… Again
+1 I like this. Not sure why it got a downvote.
Nov
28
answered Averaging angles… Again
Nov
28
answered Comparing dates in Cocoa
Nov
23
revised Are instance variables set to nil by default in Objective-C?
see others
Nov
23
answered Are instance variables set to nil by default in Objective-C?
Nov
23
awarded  Good Question
Nov
20
accepted C++, Can’t use an array or vectors, how do I use a pointer to get through this mess?
Nov
19
revised NSTextFieldCell vertical alignment, solutions seem to squash the horizontal alignment.
added a solution
Nov
19
comment C++, Can’t use an array or vectors, how do I use a pointer to get through this mess?
Sort of. See my response above. Also, get some sleep :) it really does all look better in the morning.
Nov
19
revised C++, Can’t use an array or vectors, how do I use a pointer to get through this mess?
posted an answer to comments
Nov
19
comment C++ Vector Pointers to Objects
My word! Friendly and cooperative discourse, let alone agreement in an online discussion? Totally unheard of! Nice work :)
Nov
19
comment NSTextFieldCell vertical alignment, solutions seem to squash the horizontal alignment.
I'm surprised that the horizontal alignment is affected by either of these solutions at all, since neither of them messes with the x dimension. How are you setting the alignment?
Nov
19
comment C++, Can’t use an array or vectors, how do I use a pointer to get through this mess?
An array of base class pointers should definitely work.
Nov
19
answered C++, Can’t use an array or vectors, how do I use a pointer to get through this mess?
Nov
19
answered NSTextFieldCell vertical alignment, solutions seem to squash the horizontal alignment.
Nov
18
accepted Tracking down cocoa memory leaks
Nov
18
comment Iterating Through a Class in Excel VBA
+1 and thank you. I had no idea you could write entire blocks of cells at once. That's going to come in handy.
Nov
18
revised Tracking down cocoa memory leaks
changed code formatting to avoid scroll bars
Nov
18
answered Tracking down cocoa memory leaks
Nov
17
comment Iterating Through a Class in Excel VBA
You are welcome :)
Nov
17
accepted Iterating Through a Class in Excel VBA
Nov
17
answered Iterating Through a Class in Excel VBA
Nov
16
comment Class not receiving delegate notifications
+1 Good answer. I would recommend using: if (!(self = [super init])) { return nil; } instead of simply [super init]. See the conclusion at: wilshipley.com/blog/2005/…
Nov
16
comment How to subclass AtlasSpriteManager in Cocos2d?
No worries. I've trimmed that part out of my answer.
Nov
16
revised How to subclass AtlasSpriteManager in Cocos2d?
removed unnecessary info
Nov
16
revised How to subclass AtlasSpriteManager in Cocos2d?
added some more detail
Nov
16
answered How to subclass AtlasSpriteManager in Cocos2d?
Nov
13
comment Creating Custom Cell takes the iphone app into an infinite loop
@unknown: I'm not quite sure I understand your question. Usually, you only need to load the xib file once (and quite often this simply happens automagically, via Interface Builder). Every time you load the nib, you will get another copy of the entire set of objects. That's probably what caused your infinite loop; when you loaded the nib the first time, it loaded all of the views, and tried to draw the cells for the tableView, but since your delegate method loads antoher copy of the nib file, you get another tableView, which again needs to draw its cells, and so on.
Nov
13
comment Creating Custom Cell takes the iphone app into an infinite loop
@zaph: This is actually the way that cells are normally used. The idea is that the same cell gets reused in several (if not all) places within the table. Naturally, something about the cell will have to be changed each time, and I assume that's what the OP intends to do in the delegate method. His original example simply showed adding a "test" label, so I did the same thing in my example to avoid cluttering up the explanation.
Nov
13
accepted Creating Custom Cell takes the iphone app into an infinite loop
Nov
13
answered Creating Custom Cell takes the iphone app into an infinite loop
Nov
11
comment Property & Private & extended class combination confusion of interface
+1 This is a very common pattern in Cocoa programming. As you said, the internal category is used to hide the accessors from users of the class.
Nov
10
comment obj-c NSArray count comparison fail
+1 I stared at that code for 5 minutes thinking something felt wrong, but I couldn't put my finger on it. For the sake of my project, I think I had better do some paperwork today.
Nov
9
comment How to transition between two images using a grayscale transition map
And thank you for posting your final code. It's great to see an answer get put into practice like that, and now other people can learn from the improvements that you've made. Cheers!
Nov
9
comment How to transition between two images using a grayscale transition map
Glad to hear it :)
Nov
9
accepted How to transition between two images using a grayscale transition map
Nov
9
comment Number of objects in an NSArray
You're welcome. In future, it may be easier (and quicker) to look these things up in the documentation. Apple has an extensive reference library which can come in very handy, especially for the basics of how the built-in classes work. I don't want to discourage you from asking questions, though. Just a productivity tip to keep in mind for next time. Have fun with your code :)
Nov
9
awarded  Enlightened
Nov
9
accepted Number of objects in an NSArray
Nov
9
accepted Nesting controls inside NSTableView rows
Nov
9
answered how to become a Certified Ethical Hacker?