/* By: Sean Heber iApp-a-Day - November, 2007 BSD License */ #import @interface DataGetter : UIView { id finishedTarget; SEL finishedAction; NSURL *url; NSMutableData *output; } -(void)dealloc; -(id)initWithURL: (NSURL *)sendurl inView: (UIView *)view; -(void)finishedTransferTarget: (id)target action: (SEL)action; @end