기타

기타/iOS🍎

[iOS/Swift]Terminating app due to uncaught exception 'NSGenericException', reason: 'Unable to activate constraint with anchors < > because they have no common ancestor. Does the constraint or its anchors reference items in different view hierarchies? ..

That's illegal이라는 말에 상처 받는다. addSubview에 안넣은 UI 부분이 있었다 ~ ㅜ ㅜ addSubview에 안넣은 view들이 있는지 확인해보기!

기타/iOS🍎

[iOS] Storyboard 없이 코드베이스로 프로젝트 시작하기

1. 프로젝트 생성하기 2. Main.storyboard 삭제 삭제만 한 상태로 프로젝트를 그냥 시작하게 되면 오류가 발생합니다! Main.storyboard를 찾을 수 없다는 오류가 뜨게됩니다. 'Could not find a storyboard named 'Main' in bundle NSBundle [파일위치] WeatherClone.app> (loaded)' terminating with uncaught exception of type NSException 3. Storyboard 오류 해결하기 - info.plist에 가서 storyboard 이름을 삭제시킵니다. - 프로젝트 targets 설정에서 BuildSettings - info.plist Value - UIKit Main Storyboa..

기타/iOS🍎

[iOS/Swift] 글 작성 API 연결하기 (POST 통신, Alamofire이용)

글쓰기 API를 이용해, 트윗 글쓰기를 해보려고 합니다. 1. API 명세서 확인하기 2. API 명세서에 맞게 Router생성 [Router/TwitPostRouter.swift] - Router 객체에서 경로와 HTTP 메소드 설정을 해준다. - 파라미터에 content 와 writer를 넣어준다. import Foundation import UIKit import Alamofire enum TwitPostRouter { case postTwit(content: String, writer: Writer) } extension TwitPostRouter: BaseRouter { var path: String { return "/twit" } var method: HTTPMethod { return .p..

yujindonut
'기타' 카테고리의 글 목록 (2 Page)