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
- Xcode
- 포켓볼
- Check
- UITableView
- loop
- 보라카이
- 페이백
- setting
- 신도림 테크노마트
- 신도림
- 포켓몬 GO
- swift3
- push
- UIView
- IOS
- Example
- Bitcode
- 해몽
- simulator
- 아이폰7
- 얻는법
- 공략
- swift
- LG유플러스
- 스마트폰
- GCD
- 샘플
- error
- afterdelay
- 앱스토어
Archives
- Today
- Total
목록siwft 코드 (1)
도래울
UIView, UISlider, UISwitch Swift 코드 생성
UIView In iOS, UIView class provides rectangular area in the view, this view can render user defined content on the iPhone screen. Here is the very basic example for creating UIView programmatically. 1 2 3 4 5 var DynamicView=UIView(frame: CGRectMake(100, 200, 100, 100)) DynamicView.backgroundColor=UIColor.greenColor() DynamicView.layer.cornerRadius=25 DynamicView.layer.borderWidth=2 self.view.a..
개발/iOS
2016. 4. 29. 11:44