Skip to content

Everything you need to transition from hobbyist to professional iOS developer

Notifications You must be signed in to change notification settings

YamamotoDesu/ios-professional-course-by-jrasmusson

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Onboarding View
Table View

Create a new project without storyboards

  1. Delete SceneDelegate and delete Main.storyboard

  2. Remove a reference to storyboards

  1. Update AppDelegate

Bankey_—_AppDelegate_swift_—_Edited

Update by...

import UIKit

@main
class AppDelegate: UIResponder, UIApplicationDelegate {
    
    var window: UIWindow?

    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
        
        window = UIWindow(frame: UIScreen.main.bounds)
        window?.makeKeyAndVisible()
        window?.backgroundColor = .systemBackground
        window?.rootViewController = ViewController()
        
        return true
    }

}

Set Vector img

Check perserve vector data

preserve-vector

Set scales as Single Scale

set-scales

Other

Set a dividerView

Set an indicator in UIButton

Set a nib file

  1. Create UIView file
  2. Create View with the same name
  3. Set a size as Freeform

4. Set a height

5. Associate a cutom class with the created one

6. Outlet the view

About

Everything you need to transition from hobbyist to professional iOS developer

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published