Contact Person

퐁당풍당

Mobile Developer Share

관리자 글쓰기 로그인

Mobile Developer Share

    카테고리

    • APP (25)
      • Android (11)
        • Develop (9)
        • Error (2)
      • IOS (9)
        • Develop (9)
        • Error (0)
      • - (2)

    Mobile Developer Share

    Mobile Developer Share
    퐁당풍당

    IOS 앱 배포 방식에 대한 설명

    IOS앱 배포 방법에 대해 설명드립니다.1. 테스트 기기를 맥과 USB 연결 및 빌드 1-1. 별다른 설정을 할 필요 없이. 기기 받아서 개발기기 활성화 시키고 XCode 에서 자동으로 관리하는 provisiongProfile 로 바로 앱이 설치가 가능합니다. 1-2. 디바이스 등록 제한은 100대 까지 제한합니다.2. 애드혹 OTA(Over The Air) 배포 ( UDID 수집 후 배포 ) 2-1 테스트 기기를 가진 소유자가 UDID 만 알려주면 OTA 배포가 가능합니다. 2-2 배포를 하기위해 SSL 적용된 WEB SERVER가 필요합니다. 2-3 해당 서버에 *.ipa 파일과 *.plist 파일을 업로드 후 해당 *.pist 파일의 링크를 사용자에게 전달하여야 합니다. 2-4 *.plist 파일 ..

    IOS/Develop 2018. 3. 6. 10:50

    Mobile Developer Share

    Mobile Developer Share
    퐁당풍당

    [Swift] 바코드 생성하기

    목적 : ZXing 라이브러리 사용하여 바코드 생성하기1. 라이브러리 추가 - 저는 cocoapod 를 사용해서 작업을 진행 하였습니다. - 참고 (https://github.com/TheLevelUp/ZXingObjC) target 'zxing67' do # Comment the next line if you're not using Swift and don't want to use dynamic frameworks use_frameworks! # Pods for zxing67 pod 'ZXingObjC', '~> 3.2.1' end2. 핵심 코드 - IOS는.. 별도의 코드가 필요가 없네요.. 띠로링... import ZXingObjC3. 사용법 let write = ZXMultiFormatWriter..

    IOS/Develop 2018. 3. 5. 16:09

    Mobile Developer Share

    Mobile Developer Share
    퐁당풍당

    Swift-[IphoneX 체크]

    1. 아이폰 X 디바이스 인지 확인하는 방법 - 주요 포인트는 safeAreaInsets이 0이 아니면 이다. class var isIphoneX : Bool { get { guard #available(iOS 11.0, *) else { return false } if(UIApplication.shared.windows[0].safeAreaInsets != UIEdgeInsets.zero) { return true } return false } }

    IOS/Develop 2018. 2. 7. 15:05

    Mobile Developer Share

    Mobile Developer Share
    퐁당풍당

    Swift-[Network 상태 확인]

    1. 네트워크 활성화 여부 판단하기 // 네트워크 상태 체크 class var connectedToNetwork: Bool { get { var zeroAddress = sockaddr_in(sin_len: 0, sin_family: 0, sin_port: 0, sin_addr: in_addr(s_addr: 0), sin_zero: (0, 0, 0, 0, 0, 0, 0, 0)) zeroAddress.sin_len = UInt8(MemoryLayout.size(ofValue: zeroAddress)) zeroAddress.sin_family = sa_family_t(AF_INET) let defaultRouteReachability = withUnsafePointer(to: &zeroAddress) { $..

    IOS/Develop 2018. 2. 7. 15:04

    Mobile Developer Share

    Mobile Developer Share
    퐁당풍당

    Swift-[런처스크린 불러오기]

    1. IOS 런처 스크린 해당 디바이스 크기로 불러오기 /// Get the lauch image. class var LaunchImage : UIImage { get { var lauchImage : UIImage! var viewOrientation : String! let viewSize = UIScreen.main.bounds.size let orientation = UIApplication.shared.statusBarOrientation if orientation == .landscapeLeft || orientation == .landscapeRight { viewOrientation = "Landscape" } else { viewOrientation = "Portrait" } let im..

    IOS/Develop 2018. 1. 16. 10:59

    Mobile Developer Share

    Mobile Developer Share
    퐁당풍당

    IOS 서버 없이 앱 업데이트 알림 팝업 띄우기

    1. IOS의 앱이 업데이트 되었을때 스토어 정보를 통해 업데이트 알림 팝업 노출 import Foundation import UIKit let appId = "0000" // 애플에 등록된 앱 ID let title = "앱 업데이트" // 팝업 타이틀 let message = "새로운 버전이 출시되어 설치할 준비가 되었습니다." // 팝업 메세지 let okBtnTitle = "설치하기" // 설치 버튼 let cancelBtnTitle = "나중에" // 닫기 버튼 private var topViewController: UIViewController? { guard var topViewController = UIApplication.shared.keyWindow?.rootViewController ..

    IOS/Develop 2017. 9. 19. 16:35

    Mobile Developer Share

    Mobile Developer Share
    퐁당풍당

    IOS 앱스토어 등록전 준비 사항

    1. 아이폰 마켓등록정보 - 앱 이름 : - 기본 언어 : 한국어 - 카테고리 : 1depth-(ex, 도서) 2depth - (ex, 교육) - 인앱 가격 : (ex, USD 1.09, 2.19, 3.29, 4.39 등등) - 앱 설명 : - 키워드 : - 지원 URL : - 마케팅 URL : 2. 앱스토어 아이콘 - 512x512 3. 앱스토어 스크린샷 - 1242*2208 - 4.7ch, 5.5ch 최대5장(최대 사이즈로 하위 사이즈 사용가능) - 애플 개발자 고객 문의 센터 연락처 : 080-860-9797 (한국어)

    IOS/Develop 2017. 8. 2. 14:23

    Mobile Developer Share

    Mobile Developer Share
    퐁당풍당

    IOS 런처 스크린 각 이미지 사이즈 정리

    1. IOS 런처 스크린 등록시 해당 공간에 어느 사이즈로 저장해야하는지 몰라서 의문을 품던중 해당 내용을 찾아서 공유합니다. 1x = 320 x 480 2x = 640 x 960 Retina 4 = 640 x 1136 Retina HD 5.5 = 1242 x 2208 Retina HD 4.7 = 750 x 1334 Retina HD 5.5 = 2208 x 1242 (landscape) iPad 1x = 768 x 1024 iPad 2x = 1536 x 2048 iPad 1x = 1024 x 768 (landscape) iPad 2x = 2048 x 1536 (landscape)즐거운 하루되셔요~ ------------------------------------------------------------..

    IOS/Develop 2017. 7. 4. 16:20

    Mobile Developer Share

    Mobile Developer Share
    퐁당풍당

    IOS 앱 버전 비교

    앱 개발 이후 최신 버전 업데이트 확인을 위해 버전 업데이트 체크가 필요하다해당 코드를 공유합니다. class AppVersion : Comparable { /// Returns a Boolean value indicating whether the value of the first /// argument is less than that of the second argument. /// /// This function is the only requirement of the `Comparable` protocol. The /// remainder of the relational operator functions are implemented by the /// standard library for any ty..

    IOS/Develop 2017. 5. 16. 17:44
    • «
    • 1
    • »
    최근에 올라온 글
    RECENT POSTS
    최근에 달린 댓글
    RECENT COMMENTS
    LINK
    -
    방문자수
    COUNTER
    Today
    Yesterday
    Total
    퐁당풍당’s Blog is powered by / Designed by UX공작소
    위로가기

    티스토리툴바