Revision: 42654
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at March 8, 2011 12:06 by streamt
Initial Code
------ClassName.h-------------------
@interface ClassName : NSObject {
id delegate;
}
@property(nonatomic, assign) id delegate;
@end
------ClassName.m-------------------
@synthesize delegate;
if ([delegate respondsToSelector:@selector(subscriptionSelected:)])
[delegate performSelector:@selector(subscriptionSelected:) withObject:(id)indexPath.row ];
Initial URL
Initial Description
Initial Title
Selector. Call Back.
Initial Tags
Initial Language
Objective C