my .h file looks like this
@interface EventCell : UITableViewCell {
UILabel *TitleLabel;
UILabel *DateLabel;
UIWebView *LocationLabel;
}
@property (nonatomic, retain) IBOutlet UILabel *TitleLabel;
@property (nonatomic, retain) IBOutlet UILabel *DateLabel;
@property (nonatomic, retain) IBOutlet UIWebView *LocationLabel;
@end
and in interface building my UILabel are connected just fine. When menu clicking on the objects in interface builder, I could see my corresponding variables to connect them to. But for the UIWebView I cannot see what to connect it to. Menu clicking on it just shows delegate
and I can drag it to something but I don't see how to connect it to my location label
variable
help? I feel like I am missing something very obvious. insight appreciated
the root problem is displaying string information (with some html formatting) inside this web view, which currently doesn't show my string data because it isn't connected to the controller
` and `