You can start with all the buttons on your original .xib, but some of
them hidden, and call [button setHidden:NO] to reveal them.
You can dynamically create a button with button = [UIButton
buttonWithType:UIButtonTypeRoundedRect]; then assign to its frame,
title, target and action.
Generally you do NOT make a .xib at runtime. Why write a file when
your goal is to change the in-memory data structures of your program.
On Mar 23, 5:53 am, "ilx.mac.developers"