implement login screen before swrevealcontroller

Code Ratchet

I've just started learning IOS development, I've successfully implemented the SWRevealViewController by following a given tutorial online all is working as expected.

I've then decided to add a login screen, which would be the first page the user see's when the application is run. The steps I took are a follows:

  1. Dropped a UIViewController onto the story board
  2. Set this as my 'is initial view controller'
  3. Added a button to this new view and created a seque for testing purposes

But when I click this button it does nothing, so after searching the web and trying to figure this one by my self unfortunately I've been unsuccessful due to my lack of knowledge on this, would someone be kind enough to give me some pointers on what I need to change if anything, or what sections need to me modified to make this flow work as expected?

Below is a screen grab of my current story board.

enter image description here

Update

After adding the relevant code the app delegate file I still receieve this error message:

enter image description here

Anbu.Karthik

Step-1

embed your login VC to NavigationController.

Step-2

on your login button action set the segue type as Modal and call as

 @IBAction func btnLogin(sender: AnyObject) {

    self.performSegueWithIdentifier("openSWL", sender: self)
  }

For flow understand purpose

enter image description here

For sample Project you can download here

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

implement login screen before swrevealcontroller

From Dev

Xubuntu crashes before login screen

From Dev

How to Add a Login Screen Before my TabViewController

From Dev

Windows 7 hangs before login screen

From Dev

SSH Login "clear screen" before MOTD is displayed

From Dev

How to execute a script before login screen?

From Dev

Ubuntu VirtualBox stuck before login screen

From Dev

Is ufw loaded at boot before the login screen?

From Dev

5 seconds grey screen before ubuntu MATE login screen

From Dev

Login Screen background changes itself before login in (ubuntu 16.04)

From Dev

how to set swrevealController after my login viewController in swift

From Dev

Implement a triangle between views (like the one on Instagram login screen)

From Dev

iOS How to implement a countdown screen before the user sees the view

From Dev

13.04 -> 13.10 = black screen after GRUB, before login

From Dev

How can I run a script that starts before my login screen?

From Dev

13.04 -> 13.10 = black screen after GRUB, before login

From Dev

Windows XP hangs just before displaying login screen

From Dev

Boot hangs before login screen only with monitors connected to laptop

From Dev

How is the blue screen called when scandisk runs before login?

From Dev

Ubuntu 15.10 stucks before login screen on VM Workstation

From Dev

Ubuntu MATE stuck at loading screen (before login promt)

From Dev

Windows 10 boots to black screen with cursor (before login - no bar visible)

From Dev

Windows 7 - Extreme Long Black Screen After Boot Screen Before Login Screen But Can Load Desktop

From Dev

Windows 10 - hangs on a black screen for 40s before the login screen shows up

From Dev

How can I set the keyboard layout for the login screen before the first successful login in CentOS 7?

From Dev

Default screen as login Screen

From Dev

Does FacebookSDK always show LaunchScreen after Share or Login and before get back to the current screen?

From Dev

Using systemd to execute an interactive (whiptail) script after multi-user.target but before the login screen

From Dev

How to send keystrokes before interactive shell to automate Linux serial port login with GNU screen?

Related Related

  1. 1

    implement login screen before swrevealcontroller

  2. 2

    Xubuntu crashes before login screen

  3. 3

    How to Add a Login Screen Before my TabViewController

  4. 4

    Windows 7 hangs before login screen

  5. 5

    SSH Login "clear screen" before MOTD is displayed

  6. 6

    How to execute a script before login screen?

  7. 7

    Ubuntu VirtualBox stuck before login screen

  8. 8

    Is ufw loaded at boot before the login screen?

  9. 9

    5 seconds grey screen before ubuntu MATE login screen

  10. 10

    Login Screen background changes itself before login in (ubuntu 16.04)

  11. 11

    how to set swrevealController after my login viewController in swift

  12. 12

    Implement a triangle between views (like the one on Instagram login screen)

  13. 13

    iOS How to implement a countdown screen before the user sees the view

  14. 14

    13.04 -> 13.10 = black screen after GRUB, before login

  15. 15

    How can I run a script that starts before my login screen?

  16. 16

    13.04 -> 13.10 = black screen after GRUB, before login

  17. 17

    Windows XP hangs just before displaying login screen

  18. 18

    Boot hangs before login screen only with monitors connected to laptop

  19. 19

    How is the blue screen called when scandisk runs before login?

  20. 20

    Ubuntu 15.10 stucks before login screen on VM Workstation

  21. 21

    Ubuntu MATE stuck at loading screen (before login promt)

  22. 22

    Windows 10 boots to black screen with cursor (before login - no bar visible)

  23. 23

    Windows 7 - Extreme Long Black Screen After Boot Screen Before Login Screen But Can Load Desktop

  24. 24

    Windows 10 - hangs on a black screen for 40s before the login screen shows up

  25. 25

    How can I set the keyboard layout for the login screen before the first successful login in CentOS 7?

  26. 26

    Default screen as login Screen

  27. 27

    Does FacebookSDK always show LaunchScreen after Share or Login and before get back to the current screen?

  28. 28

    Using systemd to execute an interactive (whiptail) script after multi-user.target but before the login screen

  29. 29

    How to send keystrokes before interactive shell to automate Linux serial port login with GNU screen?

HotTag

Archive