I want to create login and password fields same as in facebook app for iOS. Here is screenshot:

I want to create login and password fields same as in facebook app for
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Best way I think you need to create a Custom TableView Cell and Add a textField under it with textField borderStyle being
UITextBorderStyleNone. Also you can give a placeholder string as “Email” and “Password” in respective textFields.EDIT:
You can have two sections in tableView.
Section 0will contain textFields andSection 1will have Login Button.For the Login button, you just need to give the background color to contentView of the cell to make it work as a button. And
didSelectRowAtIndexPath:for Section 1 & Row 0 (i.e Login button) will work like button’s TouchUp Inside Event.EDIT-1:
Thanks to @MichaelFrederick suggestion, I got a better solution where in we can create a view with Login button in it and return the view from below method:
Let me know if you need more help.
Hope this helps