views:

6

answers:

1

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

A: 

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.

kubi