如何使用以下代码将 NSString 值传递给“webwhatsnew”子视图。谢谢
-(IBAction)Whatsnew {
NSString *myString =[URL absoluteString];
// how can I pass this value to "webwhatsnew" subview
webwhatsnew = [[WebWhatsnewView alloc]initWithNibName:@"WebWhatsnewView"bundle:nil];
[self.view addSubview:webwhatsnew.view];
}