일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 투자
- 미국 주식
- 배당
- ios
- 자기자본
- converter
- 터치인솔
- 유동 자산
- All season
- 거래 수수료
- Django
- dcdc
- 재무제표로 좋은 주식 고르는법
- 본느
- 이강연
- 재무제표로 좋은 주식 고르는 법
- buck converter
- 현명한 초보 투자자
- 재무제표 모르면 주식투자 절대로 하지마라
- 재무제표
- alamofire
- 재무상태표
- 토니 로빈스
- boost
- 월가의 영웅
- Buck
- 손익계산서
- 환전 수수료
- swift
- 주식
- Today
- Total
월 6000 버는 그날까지
key chain 내용 본문
import UIKit
import Alamofire
import SwiftyJSON
import KeychainAccess
class ViewController: UIViewController {
let authLoginUrl = "http://ec2-52-79-171-171.ap-northeast-2.compute.amazonaws.com:8000/rest-auth/login/"
let keychain = Keychain(service: "wanote")
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let params: Parameters = ["username": "ryulstory", "password": "gudfuf09!"]
_ = Alamofire.request(self.authLoginUrl, method: .post, parameters: params)
.responseJSON{ response in
print(response.request) // original URL request
print(response.response) // URL response
print(response.data) // server data
print(response.result) // result of response serialization
let statusCode = response.response?.statusCode ?? 0
switch statusCode {
case 200...299 :
let jsonData = JSON(response.result.value)
if let key = jsonData["key"].string {
self.keychain["key"] = key
print(key)
}
case 400 ... 499:
print("Server responded no")
case 500 ... 599:
print("Server error")
default :
print("There was an error with your request")
}
}
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
////////////
import UIKit
import KeychainAccess
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
let keychain = Keychain(service: "wanote")
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
print(self.keychain["key"])
return true
}
func applicationWillResignActive(_ application: UIApplication) {
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
}
func applicationDidEnterBackground(_ application: UIApplication) {
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}
func applicationWillEnterForeground(_ application: UIApplication) {
// Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}
func applicationDidBecomeActive(_ application: UIApplication) {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
func applicationWillTerminate(_ application: UIApplication) {
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
}
'WaNOTE' 카테고리의 다른 글
[iOS][Swift] 서버와 통신하기 - Alamofire 설치하기 (0) | 2017.07.05 |
---|---|
[ios][swift]debugging 관련 (0) | 2017.07.05 |
[iOS][Swift] Break point 1.1 (0) | 2017.07.02 |
[iOS][Swift] Status Code 403 (0) | 2017.06.25 |
[iOS][Swift] Optional 이란? (0) | 2017.06.24 |