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 |
Tags
- 샘플
- 보라카이
- Xcode
- swift
- 포켓볼
- Bitcode
- 신도림 테크노마트
- Example
- 페이백
- error
- loop
- 해몽
- 공략
- 앱스토어
- swift3
- 포켓몬 GO
- setting
- 신도림
- IOS
- push
- 얻는법
- afterdelay
- Check
- GCD
- 스마트폰
- LG유플러스
- 아이폰7
- simulator
- UIView
- UITableView
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