Parse Tutorial in Swift: How to Build Login and Signup Screen – How to Build Snapchat in iOS

[ad_1]
TAKE THE FREE COURSE:
Download resources and projects:


Posted

in

by

Tags:

Comments

21 responses to “Parse Tutorial in Swift: How to Build Login and Signup Screen – How to Build Snapchat in iOS”

  1. dennis khullar Avatar

    Hi duc sir, sorry where is the start up project.

  2. Jericho 4life Avatar

    Parse will soon close, there is what as an alternative?

  3. Sebastián Varela Gómez Avatar

    Parse at present not allowed to create an account on your server. How can I integrate Parse project

  4. Daniel Han Avatar

    This tutorial is not for free??? I cannot find it out. Anyone who knows the link?

    If not, how can I sign up for the tutorials?

    Please reply me @duc Tran!!

  5. Chalit Wantaree Avatar

    hi Duc the two links lead to different file resources, could you provide the as you vdo tutorial please ? thanks , i like you way of teaching , thums up

  6. Alex Salgado Avatar

    Will Parse be discontinued?

  7. Ali Raad Avatar

    Hello Duc Tran please how can i sign up and in parse is the website close or what and if it close is there any smiler

  8. Robin Harper Avatar

    Parse is closing. What now???

  9. Yirui Feng Avatar

    Hi, I got an error while build the testObject. It says PFObject does not have a member named 'subscript'

  10. App Development Avatar

    I have an error… fatal error: unexpectedly found nil while unwrapping an Optional value
    (lldb)

    How do I fix this?

  11. sokhim khung Avatar

    delete objects from parse with swift please. Mr.Duc

  12. Dimitri Gbo Avatar

    Duc, you are an absolute LEGEND!!! Where did you learn this and how can I go about learning this stuff in depth, from A to Z???

  13. Walla Walla Avatar

    I can't log in even i enter the right Id and password and get no respon

  14. Walla Walla Avatar

    libc++abi.dylib: terminating with uncaught exception of type NSException (lldb)
    it crashes and shows this error report in the console log
    @28:13

  15. Walla Walla Avatar

    [Error]: bad characters in classname: test class (Code: 103, Version: 1.9.0)
    I get this error ? how to do??

  16. kenjiste Avatar

    a very good job dude 🙂

  17. yahya alma Avatar

    glad to subscribe.

  18. bernard rayoso Avatar

    Hi I've been following your post lately and I like your tutorials anyway this new tutorials of yours is this swift 2.0?
    or swift 1?
    because I've been developing same like this and maybe this will help me a lot

    Thanks

    regards

    Bernard

  19. Snipermaster002 Avatar

    Very very helpful. Thank you for your tutorial

  20. Yacov Assaraf Avatar

    EDIT I found my error, right code at the end, thanks for all

    Hey i hav a problem, when we run at 23mn, self.delegate = self "Cannot assign value of type "LoginSignup.. to type "PFLogin..Delegate?
    here my code :

    import UIKit
    import Parse
    import ParseUI

    class LoginSignupViewController: PFLogInViewController
    {
        override func viewDidLoad() {
            super.viewDidLoad()
            
            title = "Snapchat"
            let signUpVC = PFSignUpViewController()
            signUpVC.delegate = self
            self.delegate = self
            self.signUpController = signUpVC
        }
        
        func showInbox()
        {
            self.navigationController?.popToRootViewControllerAnimated(true)
        }
    }

    extension LoginSignupViewController : PFSignUpViewControllerDelegate
    {
        func signUpViewController(signUpController: PFSignUpViewController, PFSignUpViewController, didSignUpUser user:PFUser)
        {
            dismissViewControllerAnimated(true, completion: nil)
            showInbox()
        }
    }

    extension LoginViewController : PFLogInViewControllerDelegate
    {
        func logInViewController(logInController: PFLoginViewController, didLogInUser user : PFUser)
        {
            showInbox()
        }
    }

    right code
    import UIKit
    import Parse
    import ParseUI

    class LoginSignupViewController: PFLogInViewController
    {
        override func viewDidLoad() {
            super.viewDidLoad()
            
            title = "Snapchat"
            let signUpVC = PFSignUpViewController()
            signUpVC.delegate = self
            self.delegate = self
            self.signUpController = signUpVC
        }
        
        func showInbox()
        {
            self.navigationController?.popToRootViewControllerAnimated(true)
        }
    }

    extension LoginSignupViewController : PFSignUpViewControllerDelegate
     {
        func signUpViewController(signUpController: PFSignUpViewController, didSignUpUser user: PFUser)
        {
            dismissViewControllerAnimated(true, completion: nil)
            showInbox()
        }
    }

    extension LoginSignupViewController : PFLogInViewControllerDelegate
    {
        func logInViewController(logInController: PFLogInViewController, didLogInUser user: PFUser)
        {
            showInbox()
        }
    }

Leave a Reply

Your email address will not be published. Required fields are marked *