iphone - Programatically created UITextField hides other controls -
i've requirement create dynamically controllers. in image provided here i've programmatically added uitextfield (name), hides uitableview.

uitableview hidden default. when user touches uibutton above it, uitableview gets appear.
my question when uitableview gets appear, how can make uitableview top of other controls?
any appreciated.
try
[self.view bringsubviewtofront: yourtableview]; 
Comments
Post a Comment