tags:

views:

955

answers:

2

hey,friends i am new at the iphon app. i am building an app by using xcode but now i would like to disable button. friends how it is possible.

+1  A: 
myButton.enabled = NO;
Squeegy
+5  A: 

Via code:

myButton.enabled = NO;

If you're using interface builder there's an "enabled" option.

Andrew Grant