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
- swift3
- loop
- Example
- GCD
- UIView
- Xcode
- 신도림
- LG유플러스
- simulator
- 앱스토어
- 얻는법
- 샘플
- 포켓볼
- 포켓몬 GO
- 스마트폰
- 해몽
- Check
- 아이폰7
- 페이백
- UITableView
- swift
- 공략
- 보라카이
- Bitcode
- push
- setting
- error
- IOS
- 신도림 테크노마트
- afterdelay
Archives
- Today
- Total
도래울
swift string search rangeOfString 본문
var string = "hello Swift"
if string.rangeOfString("Swift") != nil{
println("exists")
}
// alternative: not case sensitive
if string.lowercaseString.rangeOfString("swift") != nil {
println("exists")
}
'개발 > iOS' 카테고리의 다른 글
change the color of hud place of gray color (0) | 2016.08.01 |
---|---|
ios 메모리 에러 찾기 NSZombieEnabled 추가 (0) | 2016.07.27 |
ios get the previous viewcontroller that pushed my current view (0) | 2016.07.15 |
swift Get button click inside UI table view cell (0) | 2016.07.13 |
Loop through subview to check for empty UITextField - Swift (0) | 2016.07.13 |
Comments