Hello, when calling another UIView how can I send a value:
ServerSelect *neu =[[ServerSelect alloc] initWithNibName:nil bundle:nil]; [self presentModalViewController:neu animated:NO];
to this view?
Andreas
Hello, when calling another UIView how can I send a value:
ServerSelect *neu =[[ServerSelect alloc] initWithNibName:nil bundle:nil]; [self presentModalViewController:neu animated:NO];
to this view?
Andreas
I assume ServerSelect is an subclass of UIViewController? If so, you can just declare a property in the ServerSelect class and set the property before you display your view.