import するとこんな風に書けます - (void)onComplete:(URLLoader*)aLoader{ NSLog(@"%@",aLoader.text); } - (void)applicationDidFinishLaunching:(UIApplication *)application { URLLoader *l = [[URLLoader alloc] init]; l.delegate = self; l.complete = @selector(onComplete:); [l load:@"http://faces.jp/"]; [window makeKeyAndVisible]; } URLLoader.h #import @interface URLLoader : NSObject { int bytesLoaded; int bytesTot