dotar/vim/snippets/objc/objc.snippet

15 lines
156 B
Plaintext
Raw Normal View History

2011-11-18 05:45:33 +08:00
@interface ${1:`Filename('', 'object')`} : ${2:NSObject}
{
}
@end
@implementation $1
- (id) init
{
if (self = [super init])
{${3}
}
return self
}
@end