Quinn Taylor

7,310
Reputation
895 views

Registered User

Name Quinn Taylor
Member for 5 months
Seen 15 hours ago
Website
Location Mountain View, CA
Age 29
I'm a Computer Science nerd, longtime Mac addict, and software engineer in Silicon Valley. I work mostly with Java (for now), but I prefer Objective-C, enjoy Python, and avoid C++. I'm also the author of CHDataStructures.framework. Here's my Amazon wishlist should you feel so inclined...
Nov
24
revised XML parsing in objective-c
Fixed code formatting
Nov
23
comment Returning an object’s index by dictionary value
However, I'd suggest renaming the method -indexOfObjectInArray:byTitle: instead. Using "get" as the prefix in Cocoa implies return by reference.
Nov
23
comment Returning an object’s index by dictionary value
+1 Beat me to it by 10 seconds!
Nov
23
comment SecPKCS12Import() from Security.framework fails on OS X 10.6
Your latest update is quite helpful, specifically that these are linker errors. The fact that some symbols are not exported is puzzling. I'll be digging deeper to see if I can find a definitive answer...
Nov
23
revised Checking if a nsstring matches another string
Clarified question -- use period first, then space -- grammar is our friend
Nov
23
revised SecPKCS12Import() from Security.framework fails on OS X 10.6
added 13 characters in body
Nov
23
revised SecPKCS12Import() from Security.framework fails on OS X 10.6
added 461 characters in body
Nov
23
revised SecPKCS12Import() from Security.framework fails on OS X 10.6
added 873 characters in body
Nov
23
revised Dynamically invoke a class method in Objective C
added 71 characters in body
Nov
23
answered SecPKCS12Import() from Security.framework fails on OS X 10.6
Nov
22
revised Getting “EXC_BAD_ACCESS”
added 8 characters in body
Nov
22
comment Getting “EXC_BAD_ACCESS”
Incorrect. The copy attribute means that it calls the -copy message and assumes ownership of the copy. You're thinking of assign, which is used for primitives and delegates, etc.
Nov
22
comment Getting “EXC_BAD_ACCESS”
This is misleading, since it's not an init problem — it's a deallocation problem, since it occurs when draining the autorelease pool. Besides, instance variables are initialized to nil (for objects, anyway) when an object is created.
Nov
22
accepted Getting “EXC_BAD_ACCESS”
Nov
22
answered Getting “EXC_BAD_ACCESS”
Nov
22
comment NSXMLParser Question
Excellent point, NSMapTable is a great alternative, and easier than diving into CFMutableDictionary. :-)
Nov
22
accepted Assigning variable values to NSTextFields in Objective-C
Nov
21
revised NSXMLParser Question
added 220 characters in body; added 158 characters in body
Nov
21
answered NSXMLParser Question
Nov
21
comment Assigning variable values to NSTextFields in Objective-C
No problem. I've updated my answer with another idea. IB-related issues are quite hard to debug without actually being in front of the screen, but I hope this helps.
Nov
21
revised Assigning variable values to NSTextFields in Objective-C
added 363 characters in body
Nov
21
revised How to convert a unichar value to an NSString in Objective-C?
added 103 characters in body
Nov
21
answered Assigning variable values to NSTextFields in Objective-C
Nov
21
comment How do I trim “ “ and “\n” in NSMutableString.
This will work, but unless you specify the range, it less efficient than one would hope, since it will search the entire string for these characters (twice) rather than just the ends until all such characters have been removed. It also doesn't scale well to N characters — that's why we have NSCharacterSet. :-)
Nov
21
comment How do I trim “ “ and “\n” in NSMutableString.
This is a good approach. It returns an immutable string, but there's really not a good alternative. Also see stackoverflow.com/questions/1422369 and file a duplicate of <rdar://problem/7230868> ER: Need for -[NSMutableString trimCharactersInSet:]
Nov
21
comment Good resources for learning Objective-C
It is a great book, but it's not targeted at teaching Objective-C itself. For that, "Programming in Objective-C 2.0" by Steven Kochan — as well as the official Apple documentation — are much better resources.
Nov
20
accepted CG/NSPoint-like integer tuple type?
Nov
20
comment In Cocoa do you prefer NSInteger or just regular int, and why?
The fact that memory is more plentiful on modern devices isn't a good excuse for wasting memory. Sure, wasting an extra 32 bits here or there is small change, but if it's a struct field or instance variable, and it's allocated thousands of times, it becomes a nickel-and-dime effect. Careless programming and unknowingly using 64-bit values when 32-bit will do causes memory bloat — if you have the opportunity to avoid it, I can't think of a good excuse to not grab the low-hanging fruit.
Nov
20
answered CG/NSPoint-like integer tuple type?
Nov
20
revised CG/NSPoint-like integer tuple type?
edited title
Nov
20
comment How to access SOAP services from iPhone
Good point. Looks like someone else has already asked. If you delete this answer, you're more likely to get to 50 and be able to comment. :-) Upvoting only to help push you closer...
Nov
19
comment What are the limitations of C++ running on the iPhone?
How ironic... "There are only two kinds of languages: the ones people complain about and the ones nobody uses. — Bjarne Stroustrup (Creator of C++)" Just an FYI, insulting a language as you're asking for help is unlikely to yield the most ideal results. I personally strongly dislike C++, but if I were to call it a "super fail" while asking how to write in Objective-C instead, I'd be flamed to scorn. Including only what is relevant to the question makes for a better question. :-)
Nov
19
awarded  Nice Answer
Nov
19
comment Books to learn objective-C for an experienced programmer.
+1 This books covers the C background you need. I love Hillegass' book, but it focuses on Cocoa, with little coverage of Objective-C itself, especially when compared to this book.
Nov
10
comment @interface and @protocol explanation?
Overall, pretty good explanation, but comes off as somewhat biased that Java does it the "better" way. As with so many things, the terminology is relative to the language. It helps to remember that Objective-C predates Java, and Java drew quite a bit from it, including the concept of interfaces from protocols. virtualschool.edu/objectivec/influenceOnJava.html/… It would arguably have been less confusing if Java had retained the same name, but they didn't because Java doesn't have a separate .h file which (in C/C++) contains the "interface" for a compilation unit.
Nov
10
answered Typing methods with `id`
Nov
10
comment Dynamic binding seems like a lie.
Excellent answer as usual, Bill! It's always nice to know about details of design decisions. And I agree, I use id sparingly, since I often prefer the benefits of static typing when I can get it.
Nov
7
revised Encrypted NSData to NSString in obj-c?
deleted 1 characters in body
Nov
5
comment Object allocation from class method?
On your third question, be aware that +[NSObject new] is defined, and it calls +alloc/-init for you, and returns an object with a +1 retain count.
Nov
5
revised Implementing -hash / -isEqual: / -isEqualTo…: for Objective-C collections
edited tags
Nov
4
comment Using CHDataStructures.framework on iPhone
It should be pretty easy to define a custom NSAllocateCollectable() for an iPhone static library which just does malloc underneath, like 10.4 does, and 10.5 when GC is not enabled. This could just go in code that is only included in that target. It's issues like this that make it seem worthwhile to include a target for this, so people don't have to reinvent the wheel just to use CHDataStructures on iPhone.
Nov
4
comment Using CHDataStructures.framework on iPhone
It occurs to me that a target to create a static library for iPhone would be a good addition to the Xcode project for my framework. I'll see if I can find some time to add that — if anyone cares to help out, I gladly accept contributions. :-)
Nov
4
revised Using CHDataStructures.framework on iPhone
added 61 characters in body; edited title; deleted 10 characters in body
Nov
3
comment algorithm to add randomly-generated NSStrings to NSMutableArray
That's a lot of indexing into the string to be shuffled, among other things. I think creating a category method on NSString is a little heavyweight for the need. This is a great time to write a plain C function, use one (static) char* to hold the source string, and another to write into, then just create and return an NSString (+stringWithUTF8String:) with the contents of the null-terminated random C string. Quick and easy, and minimizes Objective-C calls for something that doesn't need it, to boot.
Nov
3
revised How can I navigate backwards in Xcode?
added 17 characters in body
Oct
30
awarded  Enlightened
Oct
28
comment Possible circular reference problem
@Philip, to accomplish what you assumed is happening, you could replace @class Controller; in RootScene.h with #import "Controller.h". Generally, it's best practice to minimize imports in headers, but in this case the child class(es) should probably have the same import. Since it's used in both places, just move it from the .m to the .h file.
Oct
28
accepted is it good form to release self in an init method when that method allocates and returns something else?
Oct
27
comment Possible circular reference problem
Correct. It's assumed that leading with a capital letter means a class, struct, etc. and that methods, ivars, and properties start with lowercase. It's actually a trend across most programming languages, so anytime you post code to have someone help you with a problem, they're likely to be immediately confused by the choice. (Also notice how the markdown on this site renders Model *Model versus Model *model.) In addition, using the identical name and capitalization is even more error prone — in my book, even Model *MyModel would be preferable. But then, I have strong opinions. :-)
Oct
27
comment Is-a, extends, ‘inherits’: What is your preferred term for “inheritance” and why?
Good argument — I like "extends" for many of the same reasons. Classes are primarily about encapsulating behavior with data, so it generally makes the most sense to me.