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
- 공략
- simulator
- 신도림
- 포켓볼
- swift
- Xcode
- 페이백
- UIView
- error
- loop
- push
- Bitcode
- setting
- GCD
- swift3
- 아이폰7
- 신도림 테크노마트
- 보라카이
- LG유플러스
- IOS
- 샘플
- 포켓몬 GO
- 앱스토어
- 해몽
- 얻는법
- UITableView
- afterdelay
- Check
- 스마트폰
- Example
Archives
- Today
- Total
목록remove all (1)
도래울
remove all subviews of a view in Swift
By far the best way to do this in Swift for iOS is:view.subviews.forEach({ $0.removeFromSuperview() }) // this gets things done view.subviews.map({ $0.removeFromSuperview() }) // this returns modified array^^ These features are fun!let funTimes = ["Awesome","Crazy","WTF"] extension String { func readIt() { print(self) } } funTimes.forEach({ $0.readIt() })//// END EDITJust do this:for view in sel..
개발/iOS
2016. 7. 13. 09:06