0

I am new to iOS app development.

I want to develop a popup screen, that should popup when a button is pressed. In this popup I want to show a Login screen, where user will enter username and password and will submit the credentials. I have following requirements to be fulfilled.

  1. It should support all iOS 5.1 and upwards.
  2. It should also support any device orientation.
  3. It should work for both iPhone and iPad.
  4. It is to be delivered in the form of a library .a file.
  5. It will contain a logo(image) also.

I am not able to find out how should i proceed for this, for BB10 I have used sheets for the same purpose.

Any suggestion on how to develop this for the iOS apps.

thanks.

Irfan
  • 4,301
  • 6
  • 29
  • 46
Mayank
  • 1,099
  • 4
  • 17
  • 44
  • http://stackoverflow.com/questions/17698571/how-can-i-create-a-custom-popup-window-for-iphone There are many way available. – Sport Sep 30 '13 at 14:23
  • 1
    The condition of "It should support all versions of iOS." is impossible. You can only support 4.2 and up. But IRL you should only support iOS 6 and up. – Sergey Grischyov Sep 30 '13 at 14:41
  • I want to support from iOS 5.1 and upwards. – Mayank Oct 01 '13 at 04:51

2 Answers2

1

For your first three requirements will fulfill by adding textfields into alertview and for 4th creating library kindly see this Tutorial. Hope it'll help. Thanks.

Aleem
  • 3,173
  • 5
  • 33
  • 71
  • I have came to know that in iOS 7, we cannot add an image to the `alertview` [SOURCE](http://stackoverflow.com/questions/16714053/how-to-add-image-with-text-into-uialertview). Is there any other option ? – Mayank Oct 03 '13 at 05:03
  • Just FYI, `UIAlertView` is [deprecated](http://nshipster.com/uialertcontroller/). – aledalgrande Jul 10 '15 at 04:34
0

@mayank http://code4app.net/category/popupview it contains many project for pop up view it will help you!

Yohan
  • 1,108
  • 9
  • 21