Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.35 KB

File metadata and controls

36 lines (27 loc) · 1.35 KB

25th_SOPT_iOS_Seminar

1st_assignment

Make a instagram view

  1. AutoLayout
  2. Like button Action

스크린샷 2019-10-01 오후 12 12 47스크린샷 2019-10-01 오후 12 18 01

2nd_seminar_handsOn

Login View

  1. stack view
  2. Move stack view position by keyboard position

2nd_assignment

Calculator App

  1. stack view
  2. Autolayout
  3. Add UIClass

스크린샷 2019-10-18 오후 2 15 59 스크린샷 2019-10-18 오후 2 28 09

@IBDesignable
class RoundButton: UIButton {

    @IBInspectable var cornerRadius: CGFloat = 0{
        didSet{
        self.layer.cornerRadius = cornerRadius
        }
    }
}