일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 앱스토어
- 얻는법
- 보라카이
- IOS
- push
- LG유플러스
- GCD
- Bitcode
- swift
- 해몽
- Example
- 포켓볼
- 포켓몬 GO
- 아이폰7
- swift3
- setting
- simulator
- 스마트폰
- Check
- loop
- afterdelay
- UIView
- 샘플
- 신도림 테크노마트
- UITableView
- Xcode
- error
- 공략
- 신도림
- 페이백
- Today
- Total
목록샘플 (3)
도래울
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..
- 스크롤만 딸랑 실행될때.2010-06-15 14:34:08.066 ScrollTest[6591:207] 스크롤이 시작전에 scrollViewWillBeginDragging 2010-06-15 14:34:08.066 ScrollTest[6591:207] 스크롤이 발생할때 scrollViewDidScroll 2010-06-15 14:34:08.082 ScrollTest[6591:207] 스크롤이 발생할때 scrollViewDidScroll 2010-06-15 14:34:08.204 ScrollTest[6591:207] 스크롤이 끝났을때 - scrollViewDidEndDragging - 스크롤후 서서히 멈출때.2010-06-15 14:35:27.444 ScrollTest[6591:207] 스크롤이 시작전..
In Swift there are no separate header and implementation files, the whole View Controller class is defined in the ViewController.swift file. Go to this file and right after the class ViewController: UIViewController { line add a constant containing some data for the table rows.let tableData = ["One","Two",Three"]Swift has inferred the constant as an Array of Strings. Next, set the number of rows..