분류 전체보기

개발/아이오에스

ios] 네비게이션바 이미지, 버튼 설정

가운데 로고 적용하기 (navigationItem.titleView), 네비게이션바 배경색 설정하기 private func setupRemainingNavItems() { let titleImageView = UIImageView(image: imageLiteral(resourceName: "title_icon")) titleImageView.frame = CGRect(x: 0, y: 0, width: 34, height: 34) titleImageView.contentMode = .scaleAspectFit navigationItem.titleView = titleImageView navigationController?.navigationBar.backgroundColor = .white navigat..

개발/아이오에스

ios] UIButton 코드로 설정하기 (버튼안에 이미지, 타이틀 이동 시키기)

let followButton: UIButton = { let button = UIButton() button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 14) button.setImage(UIImage(systemName: "person.fill.badge.plus"), for: .normal) button.tintColor = twitterBlue button.layer.cornerRadius = 5 button.layer.borderColor = twitterBlue.cgColor button.layer.borderWidth = 1 button.setTitle("Follow", for: .normal) button.setTitleColor(twitterB..

개발

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, 이름 수집한 개인정보의 이용 환상의 듀오 회원님께 사전에 동의 받은 이용 목적과 달리 ..

dev.jake
'분류 전체보기' 카테고리의 글 목록 (12 Page)