1. ViewController 에서 오버라이드하기 1 2 3 4 5 6 7 class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() overrideUserInterfaceStyle = .light //라이트모드 //overrideUserInterfaceStyle = .dark //다크모드 } } Colored by Color Scripter cs 2. info.plist 에서 설정하기 Add row -> UIUserInterfaceStyle -> 값을 Light 또는 Dark로 설정
1234567891011import UIKit //문자열을 클립보드에 복사UIPasteboard.general.string = "복사를 해버렷!!!!" //클립보드에 복사된 문자열을 가져오기if let theString = UIPasteboard.general.string { print("문자를 가져와버렸!!! \(theString)")} Colored by Color Scriptercs
1234567891011121314151617181920212223242526272829303132333435363738class User { var age:Int var level:Int var name:String init(age:Int,level:Int,name:String) { self.age = age self.level = level self.name = name }} var users = [User]() users.append(User(age: 25, level: 10, name: "김씨"))users.append(User(age: 20, level: 20, name: "이씨"))users.append(User(age: 23, level: 30, name: "박씨"))users.append(..
ld: '/Users/tomykim/Documents/FacebookSDK/FacebookSDKs-iOS-4.28.0/FBSDKLoginKit.framework/FBSDKLoginKit(FBSDKLoginButton.o)' does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invo..
Swift로 페이스북 로그인 연동하기https://developers.facebook.com 에서 새앱 추가 선택 보여질 앱의 ID 입력 페이스북 로그인 클릭 -> 설정 버튼 클릭 IOS 선택 IOS SDK 다운받기 SDK 다운로드 후 다음 작업 진행하기한단계씩 설명 있음 도큐멘트에 FacebookSDK 디렉토리 생성 -> 다운받은 SDK 압축풀기 압축을 푼 SDK디렉토리의 위치 (Xcode에서 프레임워크 검색 경로로 사용될 예정) 프로잭트 디렉토리에 "FrameWorks" 디렉토리 생성하기 압축을 푼 SDK중에 CoreKit과 LoginKit을 Frameworks디렉토리로 드레그하기 프레임워크 디렉토리에 추가된 모습 Build Settings에 Framework Search Paths 설정하기 SDK압..
12345678910111213 import UIKit func getRandomColor() -> UIColor{ let randomRed:CGFloat = CGFloat(drand48()) let randomGreen:CGFloat = CGFloat(drand48()) let randomBlue:CGFloat = CGFloat(drand48()) return UIColor(red: randomRed, green: randomGreen, blue: randomBlue, alpha: 1.0) }Colored by Color Scriptercs
ld: in /Users/Objects-normal/x86_64/TWRAppDelegate.o, file too small for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation)잘되다 갑자기 linker command failed with exit code 1 에러가 뜬다면Product -> Clean을 하시고 다시 빌드해보세요~
New File에서 Cocoa Touch class 를 만들어 주세요. UIView의 서브클래스로 만들어 줍니다. 이름은 DRScrollSidebar로 하겠습니다. 다시 New File로 이번에는 View를 만들어 주세요. View의 이름은 DRScrollSideView로 하겠습니다. 만들어진 DRScrollSideView.xib파일에서view의 calss를 DRScrollSidebar로 지정해 줍니다. 보기 쉽게 view의 배경색을 빨간색으로 바꿔주세요.이제 DRScrollSideBar.swift 파일을 작성해 보겠습니다.123456789import UIKit class DRScrollSidebar: UIView { class func instanceFromNib() -> UIView { return ..
- Total
- Today
- Yesterday