Authordattatraya.surwase

Adding multiple uicontrollers on view

A

If we create multiple controllers programmatically, we generally use for loop but we can add the same controllers by using the methods, example: 1. By using for loop   for (int i = 0; i < 3; i++) { UITextField *textField= [[UITextField alloc] initWithFrame:CGRectMake(50, 20+40*i, 117, 30)]; textField.borderStyle = UITextBorderStyleRoundedRect; textField.font = [UIFont...

Category