when calling another UIView how can I send a value:
ServerSelect *neu =[[ServerSelect alloc] initWithNibName:nil bundle:nil]; [self presentModalView开发者_StackOverflowController: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.
精彩评论