Reputation: 81
@interface Velocity2 : UIViewController {
UILabel * answerLabel;
UITextField * varA,varB,varC;
Is this legal to do or is below the only way to do it?
UITextField * varA;
UITextField * varB;
UITextField * varC;
Upvotes: 1
Views: 220