3
votes
Crafting .webloc file
.webloc files (more generically, Internet location files) are written in a format whose definition goes back to Mac OS 8.x. It is resource-based, derived from the clipping format you …
1
vote
Alternative to NSXMLDocument on the iPhone for XSLT purposes…
It depends how you want to use XSLT; not sure what you mean by "natively". If you're just embedding a browser, MobileSafari will interpret XSLT for you.
If you're just converting one XML d …
4
votes
Replace multiple characters in a string in Objective-C?
A somewhat inefficient way of doing this:
NSString *s = @"foo/bar:baz.foo";
NSCharacterSet *doNotWant = [NSCharacterSet characterSetWithCharactersInString:@"/:."];
s = [[s component …
1
vote
How do I detect if an application is document-based?
Another idea would be to look for an AXImage representing the proxy icon in the title bar; untitled documents could simply be matched by checking the window title for "untitled" or its localized eq …
1
vote
How to convert NSData to byte array in iPhone?
The signature of -[NSData bytes] is - (const void *)bytes. You can't assign a pointer to an array on the stack. If you want to copy the buffer managed by the NSData …
6
votes
Why declare a method in a Category without implementing it?
The developer probably used a tool such as class-dump in order to generate headers which list all the methods implemente …
3
votes
Strip symbols for iPhone application
Objective-C class and method information can't be stripped - it is necessary for execution. Best you can do is come up with some kind of obfuscation, if you want.
…
1
vote
Weak-keyed dictionary in Objective-C
It sounds like what you're asking is the ability to react to a weak-referenced instance variable to be deallocated. You can certainly use the __weak attribute (with GC enabled) to cre …
2
votes
Selectors in Objective C
NSString's method is lowercaseString (0 arguments), not lowercaseString: (1 argument).
…
5
votes
Easy way to dismiss keyboard?
Here's one idea:
@interface ... {
UITextField *editingField;
}
- (void)textFieldDidBeginEditing:(UITextField *)textField;
{
editingField = textField;
}
- (IBAction)dismiss …
2
votes
Feedback on my first Objective-C code (a QuickLook plugin)
First, Quick Look generators don't get compiled with garbage collection on. It looks like BEncoding may have been written to assume garbage collection, as I don't ever see it release anything. …
4
votes
How to create a horizontal scrolling view on iPhone???
The Facebook app's tab views are open source (Apache licensed). Check out TTTabStrip.
…
4
votes
How do I use C++ STL containers in My iPhone App?
Just rename your source file so it ends in .mm and it should trigger the Objective-C++ front-end; you can then mix Objective-C and C++ in it. More information …
3
votes
3
votes
Declare External Functions In A Cocoa / Obj-C Project.
You want #import "mad.h", not #import "mad.m" otherwise the class implementation is evaluated twice, hence the error you're seeing.
A few stylistic points:
…
