UIAlertview in iphone application
I am new to iphone application.I am working on my first app.I have to implement alertview with three textfields and three labels(currentpassword,newpassword,verifypassword) and two uibuttons(submit,cancel).Title is:changepassword.upto now,I found only single textfield and two uibutton fields.can anybody tell me,how can i done this?give me开发者_Python百科 a example or detailed explanation.
You've got a lot of stuff there. As the commenters note, a modal viewController is the way to go. You can have it slide up from the bottom and cover everything with setModalTransitionStyle:UIModalTransitionStyleCoverVertical
.
精彩评论