APP

· APP/Swift
Any Any can represent an instance of any type at all, including function types. 클래스, 구조체, 열거형, 함수타입 즉 어떤 것이라도 저장 가능함 var x: Any = "Hi" print(x, type(of:x)) x = 10 print(x, type(of:x)) x = 3.5 print(x, type(of:x)) //type을 검사해서 사용 연산자 대부분의 Swift 연산자는 다른 언어들과 비슷하지만 그중 몇가지 특징을 살펴보겠다. 증감 연산자 유무 n x++ // x를 1 증가시킴, Swift 3에서 없어짐, x+=1 n x-- // x를 1 감소시킴, Swift 3에서 없어짐, x-=1 Swift에서는 증감 연산자가 Swift3 버전에..
· APP/Swift
Int 형의 크기? /컴파일러)의 따라 크기가 다름 print("Int32 Min = \(Int32.min) Int32 Max = \(Int32.max)") // 32 bit 인트 값의 최대 최소값 print("Int Min = \(Int.min) Int Max = \(Int.max)") // 출력 되는것을 보니까 현재 온라인 컴파일러는 64비트 즉 8바이트 만큼 크기를 가짐 문자 데이터타입 중요 포인트 문자 데이터 타입 : Character 선언 시 중요 포인트 문자 데이터 타입 : Character 선언 시 중요 포인트 var myChar2 = ":" var myChar3 : Character = "X" //:Character 생략불가,생략하면 String형임 // 그래서 Character을 써야하는..
· APP
보호되어 있는 글입니다.
· APP
App Store Metrics | Pocket Gamer.biz | PGbiz App Store Metrics | Pocket Gamer.biz | PGbiz App Store Metrics We originally created our metrics page in the fall of 2008 to celebrate the App Store reaching a milestone of what at the time seemed amazing, 10,000 apps. There was a tremendous response to that page and to the App Store which is well no www.pocketgamer.biz 위 사이트에서는 앱스토어의 현황을 볼수있다. 모바일인덱스..
· APP/Swift
아래 주소는 스위프트 관련 문법을 세세하게 공부할 수 있는 공식 가이드 문서입니다. https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html The Basics — The Swift Programming Language (Swift 5.7) The Basics Swift is a new programming language for iOS, macOS, watchOS, and tvOS app development. Nonetheless, many parts of Swift will be familiar from your experience of developing in C and Objective-C. Swift provides its own vers..
· APP/Flutter
PowerShell을 관리자 권한으로 실행시키고, Set-ExecutionPolicy RemoteSigned 명령어를 실행시키면 시킨다음 안드로이드 스튜디오 및 vscode 에서 해당 프로젝트 터미널에서 다시 firebase init 하면 실행 가능 하다. + 그래도 오류난다면 npm install -g firebase-tools 명령어를 관리자모드에서 CMD에서 입력 했는지 확인하자
· APP/Flutter
Mac 전용 키 해시 코드를 복사한뒤 깃 부시에서 입력하면 값을 얻을수 있다 윈도우 용으로 실행후 값이 나오긴 하지만 오류남 openssl 을 사용한다면 윈도우로 코드를 복사해서 터미널에서 하자
개발자 aloe
'APP' 카테고리의 글 목록 (3 Page)