Peter Hosey

16,798
reputation
1007 views

Registered User

name Peter Hosey
member for 1 year
seen 52 mins ago
website
location US
age
Lead Developer on Growl, Developer on Adium, and author of many of my own apps (and a blog). Not an iPhone developer.
1h
answered Accessing a specific cell in an NSTableView
1h
answered How do you show the Finder context menu from a Cocoa application?
1h
comment Sort NSArray’s by an int contained in the array
I will leave it to you to replace the contents of one of those with code that sends a compare:options: message to the a object, passing b as the object to compare and NSNumericSearch as the option.
1h
comment Sort NSArray’s by an int contained in the array
Example of a comparison block: NSComparator everythingComparesEqual = ^(id a, id b, void *context){ return NSOrderedSame; }
1h
comment Sort NSArray’s by an int contained in the array
Example of a comparison function: NSComparisonResult everythingComparesEqual(id a, id b, void *context) { return NSOrderedSame; }
1h
accepted Cocoa: Any downside to using NSSet as key in NSMutableDictionary?
2h
comment Objective C - how to resize a window programmatically with given window id?
You don't, and even if you could, it doesn't necessarily have a window property.
2h
revised iphone - IB display an image name that been deleted (reference and trashed)
This question has nothing to do with Cocoa.
2h
comment printing 4”x6” cards in OSX (cocoa)
Don't forget to release those NSPrintInfo objects. Also, you should use NSUInteger for the array index (or, better yet, just loop on the array directly).
2h
answered Sort NSArray’s by an int contained in the array
7h
comment memory management guidelines on foundation functions
Cocoa has its own memory management docs ( developer.apple.com/mac/library/… ). The rules are slightly different; CF has no autorelease, and Cocoa uses new where CF uses Create.
7h
comment Storing AudioBufferLists from the ExtAudioFile API for later use
Or you could create an NSMutableData holding dataSize bytes and memcpy the mData into the data's mutableBytes.
7h
answered Concatenating two NSStrings separated by a CRLF
20h
revised Can I limit the character set for a UITextField?
This question is about Cocoa Touch (specifically, UIKit), not Cocoa.
21h
answered nstableview + cannot show partial file names
21h
answered Cocoa: Any downside to using NSSet as key in NSMutableDictionary?
22h
answered How to read the content of an other app’s text field on OS X?
22h
revised Button background setting
This question is about Cocoa Touch, not Cocoa.
22h
answered Can a NSDictionary take in NSSet as key?
1d
revised MFMailComposeController error in Line Location tool
This question is about Cocoa Touch (specifically, MessageUI), not Cocoa.
1d
revised How can I send two arguments in a selector method?
This question is about Cocoa Touch (specifically, UIKit), not Cocoa.
2d
revised How to pass a value from Cocoa to an SQLite query
New title that actually describes the question.
2d
answered How to pass a value from Cocoa to an SQLite query
2d
revised Strange delay with Navigation Controller behaviour
This question is about Cocoa Touch (specifically, UIKit), not Cocoa.
2d
comment Constants in Objective C
A class method isn't a constant. It has a cost at run time, and may not always return the same object (it will if you implement it that way, but you haven't necessarily implemented it that way), which means you have to use isEqualToString: for the comparison, which is a further cost at run time. When you want constants, make constants.
2d
accepted Allow 0 values in NSDatePicker fields?
2d
answered Core Data + Core Animation/CALayer together??
2d
comment keyUp event heard?: Overridden NSView method
IBAction is for action methods, not event methods.
Dec
5
revised decode utf8 on iphone
Move the UTF-8 reference up a list item.
Dec
5
answered decode utf8 on iphone
Dec
5
comment decode utf8 on iphone
It might help to [link to that documentation](developer.apple.com/iphone/library/…).
Dec
5
revised decode utf8 on iphone
This question has nothing to do with Xcode. Adding cocoa-touch tag instead.
Dec
5
accepted After loading nib with NSViewController… how do I access the NSButton in the nib?
Dec
5
comment How to sort NSMutableArray using sortedArrayUsingDescriptors ?
Although it would have to be of a numeric type, such as int (preferably unsigned), NSUInteger, double, or NSNumber *. With the frequency values as strings, they won't sort numerically (not without a custom comparator, anyway).
Dec
5
answered How to draw a rounded NSImage
Dec
5
comment XML parses with extra whitespace
More specifically, the program is clearing the string on the start of a category element (which would be why “Banks” doesn't show up in the example output), but not the start of a category_name element.
Dec
5
comment Setting default fonts in NSTextView
Furthermore, you should use the user's preferred fixed-pitch font and size, not a hard-coded font and size. developer.apple.com/mac/library/…:
Dec
5
comment Setting default fonts in NSTextView
From the NSText (superclass of NSTextView) documentation: “Sets the font of all the receiver’s text to <var>aFont</var>.” If that didn't work for you, you should look into why.
Dec
5
comment What describes nil best? What’s that really?
Yes, if (nil == nil) doesn't make sense, but if (anObject == nil) does: “If no object is in the variable anObject…”
Dec
5
comment AppDelegate Being accessed from different classes, from RootController.m
What's the question? Did you edit it out?
Dec
5
comment Can I create properties with a public getter and private setter?
I'm pretty sure he meant exactly what he said, but you're right—assign is the default, not retain. developer.apple.com/mac/library/…
Dec
4
revised How to switch to a different UITabBarItem on UIButton touch up inside
This question is about Cocoa Touch, not Cocoa.
Dec
4
answered From Xcode, how do I read data from a text file that is constantly being updated?
Dec
4
revised What exactly is a so called “Class Cluster” in Objective-C?
Amended link to go directly to the Class Clusters section.
Dec
4
revised Best way to trace a letter on iPhone
The Cocoa solution would involve either AppKit or Core Text, and neither of these is available on the iPhone. Therefore, not a Cocoa question.
Dec
3
comment Finding out if a Window is being Dragged
Not necessarily, as that isn't specific to windows being dragged.
Dec
3
comment What describes nil best? What’s that really?
It is perfectly valid to compare a pointer variable to nil. You might even argue that it's more explicitly a nil-check than the mere pointer-as-truth-expression (although I use the truth-expression form myself).
Dec
3
accepted Audio equivalent of QTMovieView?
Dec
3
revised Asynchronous image load into TableView cell
This question is about Cocoa Touch (specifically, UIKit), not Cocoa. Also fixed code formatting.
Dec
3
answered Allow 0 values in NSDatePicker fields?