전체 글

개발

swift] UICollectionView header,footer 추가하기

class HomeController: UICollectionViewController,UICollectionViewDelegateFlowLayout{ let cellId = "cellId" let headerId = "headerId" let footerId = "footerId" override func viewDidLoad() { super.viewDidLoad() collectionView.backgroundColor = .white collectionView.register(ContentCell.self, forCellWithReuseIdentifier: cellId) // 내용 collectionView.register(UICollectionViewCell.self, forSupplementa..

개발/아이오에스

swift 프로젝트를 스토리보드 없이(only code) 개발 셋팅하기 Set Up Project without Storyboard

https://medium.com/@yatimistark/removing-storyboard-from-app-xcode-14-swift-5-2c707deb858 Removing Storyboard From App [Xcode 14, Swift 5] In this article, I will show you how to create a project without a storyboard in a few steps. Or rather, how to get rid of it, and code the… medium.com class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func application(_ applicatio..

카테고리 없음

환상의듀오 - 버전 정보 / 오픈소스 라이선스

버전 정보: v.1.0.0 오픈소스 라이선스 : Firebase/Firestore - firebase.google.com SwipeCellKit - https://github.com/SwipeCellKit/SwipeCellKit JGProgressHUD - github.com/JonasGessner/JGProgressHUD IQKeyboardManager - github.com/hackiftekhar/IQKeyboardManager Icons - www.canva.com/ Images - developer.riotgames.com 개발/디자인 - 윤지용 ✉ dev.geeyong@gmail.com GitHub - https://github.com/dev-geeyong

환상의 듀오 - 개인정보 처리방침 / 이용약관

환상의 듀오 개인정보 처리방침 수집하는 개인정보 회원가입을 하시는 경우, 로그인하여 환상의 듀오 서비스를 비롯한 다양한 회원제 기반의 서비스들을 이용하실 수 있습니다. 환상의 듀오 회원가입 과정에서 서비스 이용을 위해 필요한 최소한의 정보만을 수집 및 활용합니다. 개인정보 수집 방법 환상의 듀오 앱 등에서 서비스 제공을 위해 필요한 최소한의 개인정보를 수집합니다. 개인정보의 수집이 발생하는 경우(생성정보 등 일부 예외를 제외하고) 환상의 듀오 이용자로부터 ‘개인정보 수집 및 이용에 대한 동의’를 얻으며 그 동의 범위 내에서만 개인정보를 이용합니다. [로그인 시] • 이메일 • Apple로 로그인 시: Apple ID, 이름 수집한 개인정보의 이용 환상의 듀오 회원님께 사전에 동의 받은 이용 목적과 달리 ..

개발/아이오에스

xcode 에러 “The Local repository is out of date”…i have no branch how to solve this

터미널에서 해당 폴더로 들어가 아래 명령어를 입력. git init git add . git stash save git branch --set-upstream-to=origin/master git pull -r git stash pop git push

개발/아이오에스

ios] Alamofire / kakao api 활용 http 통신하기

// // MySearchRouter.swift // brandi // // Created by dev.geeyong on 2021/01/28. // import Foundation import Alamofire enum MySearchRouter: URLRequestConvertible { case searchPhotos(term: String, pageNumber: String) var baseURL: URL { return URL(string: API.BASE_URL + "/search/")! } var method: HTTPMethod { return .get // switch self { // case .searchPhotos: // return .get // } } var path: Strin..

dev.jake
484jake