[ERROR] fatal error: unexpectedly found nil while unwrapping an Optional value
2016. 7. 6. 12:53ㆍProgramming/Swift
반응형
* 원본 소스
let URL = NSURL(string: "https://roads.googleapis.com/v1/snapToRoads?path=-35.27801,149.12958|-35.28032,149.12907")! |
* 에러 발생
fatal error: unexpectedly found nil while unwrapping an Optional value
* 해결
var stringUrl = "https://roads.googleapis.com/v1/snapToRoads?path=-35.27801,149.12958|-35.28032,149.12907" let URL = NSURL(string: stringUrl.stringByAddingPercentEscapesUsingEncoding(NSUTF8StringEncoding)!)! |
반응형
'Programming > Swift' 카테고리의 다른 글
tableView의 cell 안에 2줄이상 사용할 때 (0) | 2016.07.06 |
---|---|
[ERROR] Error : *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Receiver (ViewController) has no segue with identifier ‘loginView'' (0) | 2016.07.06 |
tableView prototype cell 부분을 보여주지 않으려면 (0) | 2016.07.06 |
UUID 와 UDID (0) | 2016.07.05 |
AppIcon 검은색 테두리 (0) | 2016.06.22 |