Hello everyone,
In Erica Sadun's Download Helper, link here, I can put these methods into my classes:
- (void) didReceiveData: (NSData *) theData;
- (void) didReceiveFilename: (NSString *) aName;
- (void) dataDownloadFailed: (NSString *) reason;
- (void) dataDownloadAtPercent: (NSNumber *) aPercent;
these methods obviously refer back to the "DownloadHelper.h" and "DownloadherHelper.m". I want to know if I am able to access properties on the xib view such as textfields, uitableviews, uilabels ... etc in one of these methods. For example:
- (void) didReceiveFilename: (NSString *) aName {
[label setText:@"hi"];
}
I have tried doing so, but the objects on the xib view won't update. like the given example above. Is there any way to do this?
Thanks,
Kevin