Swift3/Xcode8에서 오류 처리 연습
오류 처리
오류 처리 연습을 위해 쓰십시오. 아래의 UIButton을 클릭하면 에러 핸들링 처리가 실행되는 앱입니다. 인수에 캐릭터 라인을 취해, 그 캐릭터 라인으로 에러를 판정합니다.
예상되는 오류를 enmu로 정의
enum TestError:Error {
case Error1(String)
case Error2(String)
case Error3(String)
case AnotherError(String)
}
실행할 함수 정의
func TestMethod(str:String) throws {
if str == "error1" {
throw TestError.Error1("エラー発生1")
}else if str == "error2" {
throw TestError.Error2("エラー発生2")
}else if str == "error3" {
throw TestError.Error3("エラー発生3")
}else{
throw TestError.AnotherError("それ以外のエラー発生")
}
}
}
step3 실행
do {
try TestMethod(str: "error3")
} catch TestError.Error1 (let err) {
print (err)
} catch TestError.Error2 (let err) {
print (err)
}catch TestError.Error3 (let err) {
print (err)
}catch TestError.AnotherError (let err) {
print (err)
}catch{
print("何かがおかしい")
}
구현
ViewController.swiftimport UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
@IBAction func ErrHandlingTestButton(_ sender: Any) {
do {
try TestMethod(str: "error3")
} catch TestError.Error1 (let err) {
print (err)
} catch TestError.Error2 (let err) {
print (err)
}catch TestError.Error3 (let err) {
print (err)
}catch TestError.AnotherError (let err) {
print (err)
}catch{
print("何かがおかしい")
}
}
enum TestError:Error {
case Error1(String)
case Error2(String)
case Error3(String)
case AnotherError(String)
}
func TestMethod(str:String) throws {
if str == "error1" {
throw TestError.Error1("エラー発生1")
}else if str == "error2" {
throw TestError.Error2("エラー発生2")
}else if str == "error3" {
throw TestError.Error3("エラー発生3")
}else{
throw TestError.AnotherError("それ以外のエラー発生")
}
}
}
참고
Swift,Objective-C 프로그래밍 ~ iOS ~
【Swift3.0】Error 프로토콜을 사용한 예외 처리의 샘플을 만들어 보았다
Swift에서 Error Handling을 다시 배우십시오! byYutaka
Swift3/Xcode8에서 오류 처리 연습
GitHub
Swift3-ErrorHandlingTutorial
Reference
이 문제에 관하여(Swift3/Xcode8에서 오류 처리 연습), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/rh_/items/61c24e291853bb9c9d4a
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
enum TestError:Error {
case Error1(String)
case Error2(String)
case Error3(String)
case AnotherError(String)
}
실행할 함수 정의
func TestMethod(str:String) throws {
if str == "error1" {
throw TestError.Error1("エラー発生1")
}else if str == "error2" {
throw TestError.Error2("エラー発生2")
}else if str == "error3" {
throw TestError.Error3("エラー発生3")
}else{
throw TestError.AnotherError("それ以外のエラー発生")
}
}
}
step3 실행
do {
try TestMethod(str: "error3")
} catch TestError.Error1 (let err) {
print (err)
} catch TestError.Error2 (let err) {
print (err)
}catch TestError.Error3 (let err) {
print (err)
}catch TestError.AnotherError (let err) {
print (err)
}catch{
print("何かがおかしい")
}
구현
ViewController.swiftimport UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
@IBAction func ErrHandlingTestButton(_ sender: Any) {
do {
try TestMethod(str: "error3")
} catch TestError.Error1 (let err) {
print (err)
} catch TestError.Error2 (let err) {
print (err)
}catch TestError.Error3 (let err) {
print (err)
}catch TestError.AnotherError (let err) {
print (err)
}catch{
print("何かがおかしい")
}
}
enum TestError:Error {
case Error1(String)
case Error2(String)
case Error3(String)
case AnotherError(String)
}
func TestMethod(str:String) throws {
if str == "error1" {
throw TestError.Error1("エラー発生1")
}else if str == "error2" {
throw TestError.Error2("エラー発生2")
}else if str == "error3" {
throw TestError.Error3("エラー発生3")
}else{
throw TestError.AnotherError("それ以外のエラー発生")
}
}
}
참고
Swift,Objective-C 프로그래밍 ~ iOS ~
【Swift3.0】Error 프로토콜을 사용한 예외 처리의 샘플을 만들어 보았다
Swift에서 Error Handling을 다시 배우십시오! byYutaka
Swift3/Xcode8에서 오류 처리 연습
GitHub
Swift3-ErrorHandlingTutorial
Reference
이 문제에 관하여(Swift3/Xcode8에서 오류 처리 연습), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/rh_/items/61c24e291853bb9c9d4a
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
func TestMethod(str:String) throws {
if str == "error1" {
throw TestError.Error1("エラー発生1")
}else if str == "error2" {
throw TestError.Error2("エラー発生2")
}else if str == "error3" {
throw TestError.Error3("エラー発生3")
}else{
throw TestError.AnotherError("それ以外のエラー発生")
}
}
}
do {
try TestMethod(str: "error3")
} catch TestError.Error1 (let err) {
print (err)
} catch TestError.Error2 (let err) {
print (err)
}catch TestError.Error3 (let err) {
print (err)
}catch TestError.AnotherError (let err) {
print (err)
}catch{
print("何かがおかしい")
}
구현
ViewController.swiftimport UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
@IBAction func ErrHandlingTestButton(_ sender: Any) {
do {
try TestMethod(str: "error3")
} catch TestError.Error1 (let err) {
print (err)
} catch TestError.Error2 (let err) {
print (err)
}catch TestError.Error3 (let err) {
print (err)
}catch TestError.AnotherError (let err) {
print (err)
}catch{
print("何かがおかしい")
}
}
enum TestError:Error {
case Error1(String)
case Error2(String)
case Error3(String)
case AnotherError(String)
}
func TestMethod(str:String) throws {
if str == "error1" {
throw TestError.Error1("エラー発生1")
}else if str == "error2" {
throw TestError.Error2("エラー発生2")
}else if str == "error3" {
throw TestError.Error3("エラー発生3")
}else{
throw TestError.AnotherError("それ以外のエラー発生")
}
}
}
참고
Swift,Objective-C 프로그래밍 ~ iOS ~
【Swift3.0】Error 프로토콜을 사용한 예외 처리의 샘플을 만들어 보았다
Swift에서 Error Handling을 다시 배우십시오! byYutaka
Swift3/Xcode8에서 오류 처리 연습
GitHub
Swift3-ErrorHandlingTutorial
Reference
이 문제에 관하여(Swift3/Xcode8에서 오류 처리 연습), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/rh_/items/61c24e291853bb9c9d4a
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
@IBAction func ErrHandlingTestButton(_ sender: Any) {
do {
try TestMethod(str: "error3")
} catch TestError.Error1 (let err) {
print (err)
} catch TestError.Error2 (let err) {
print (err)
}catch TestError.Error3 (let err) {
print (err)
}catch TestError.AnotherError (let err) {
print (err)
}catch{
print("何かがおかしい")
}
}
enum TestError:Error {
case Error1(String)
case Error2(String)
case Error3(String)
case AnotherError(String)
}
func TestMethod(str:String) throws {
if str == "error1" {
throw TestError.Error1("エラー発生1")
}else if str == "error2" {
throw TestError.Error2("エラー発生2")
}else if str == "error3" {
throw TestError.Error3("エラー発生3")
}else{
throw TestError.AnotherError("それ以外のエラー発生")
}
}
}
Swift,Objective-C 프로그래밍 ~ iOS ~
【Swift3.0】Error 프로토콜을 사용한 예외 처리의 샘플을 만들어 보았다
Swift에서 Error Handling을 다시 배우십시오! byYutaka
Swift3/Xcode8에서 오류 처리 연습
GitHub
Swift3-ErrorHandlingTutorial
Reference
이 문제에 관하여(Swift3/Xcode8에서 오류 처리 연습), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/rh_/items/61c24e291853bb9c9d4a
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(Swift3/Xcode8에서 오류 처리 연습), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/rh_/items/61c24e291853bb9c9d4a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)