250x250
Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
Tags
- ipad
- effect
- keyframes
- php
- IOS
- 비전공자
- image
- HTML
- jQuery
- 백엔드
- MAC
- react
- css3
- javascript
- front-end
- iPhone
- Animation
- hover
- SWIFT
- iOS 개발자
- 개발자
- 프론트엔드
- xcode
- 풀스택
- CSS
- 비전공 개발자
- html5
- 자바스크립트
- button
- 애니메이션
Archives
- Today
- Total
목록IBDesignable (1)
비전공자 개발일기
import UIKit @IBDesignable class RoundNumBTN: UIButton { @IBInspectable var isRound: Bool = false { didSet { if isRound { layer.cornerRadius = frame.height / 2 } } } } import UIKit enum Operation { case Plus case Substract case Multiple case Divide case unknown } class ViewController: UIViewController { @IBOutlet weak var numOutputLabel: UILabel! @IBOutlet weak var divideBTN: UIButton! @IBOutlet..
SWIFT
2022. 12. 13. 22:54