Application Loader 로그인 오류 로그인 안되고 에러 발생하는 경우 Please sign in with an app-specific password 앱 패스워드를 안만들어서 발생하는 오류 아래 링크를 참고해서 패스워드 생성 https://support.apple.com/en-us/HT204397 1. Apple ID 사이트에 로그인 합니다. (https://appleid.apple.com/)2. 보안(Security) 섹션의 앱 암호(app-specific password) 암호생성을 클릭합니다. 3. Application Loader를 입력하고 확인을 누르면 패스워드가 생성됩니다.4. 로그인 하면 됩니다. [ 모바일 관련 ]/아이폰(iOS) 6년 전
ios 앱(ipa) 업로드시 프레임워크 오류 발생하는 경우 (로컬에서는 정상작동) ios 앱(ipa) 업로드시 프레임워크 오류 발생하는 경우 (로컬에서는 정상작동) Select Project & open Build Phases Tab.Under the Tab press plus button to create New Run Script Phase Run Script 에 아래 스크립트 입력 후 업로드 APP_PATH="${TARGET_BUILD_DIR}/${WRAPPER_NAME}" # This script loops through the frameworks embedded in the application and # removes unused architectures. find "$APP_PATH" -name '*.framework' -type d | while read -r FRAME.. [ 모바일 관련 ]/아이폰(iOS) 6년 전
앱(ipa) 업로드시 오류 발생 - has one ios distribution certificate but its private key is not installed 앱(ipa) 업로드시 오류 발생 has one ios distribution certificate but its private key is not installed Xcode에 개인키 인증서가 등록되지 않았을 경우에 발생함 Step 1:- xcode -> product -> archives -> Click manage certificateStep 2 :- ios distribution 으로 추가 [ 모바일 관련 ]/아이폰(iOS) 6년 전
아이폰 앱 스크린샷 크기 아이폰 앱 스크린샷 1242 x 2688 (6.5형) 1242 x 2208 (5.5형) 2048 x 2732 (12.9형) https://help.apple.com/app-store-connect/#/devd274dd925 [ 모바일 관련 ]/아이폰(iOS) 6년 전
php 접속 브라우저의 언어 체크 if ($_SERVER['HTTP_ACCEPT_LANGUAGE']=="ko"){//액션go_url("이동할 도메인");}?> [ Web 관련 ]/php 6년 전
Mysql Join에 대한 설명 Mysql DB를 다룰 때 초보 수준에서 약간 중급으로 넘어가면서 흔히들 많이 어려워 하는 것이 Join 구문입니다.먼저, 아래와 같은 테이블 두개가 있다고 합시다.123 mysql> select * from demo_people; +————+————–+——+ | name | phone | pid | +————+————–+——+ | Mr Brown | 01225 708225 | 1 | | Miss Smith | 01225 899360 | 2 | | Mr Pullen | 01380 724040 | 3 | +————+————–+——+123 mysql> select * from demo_property; +——+——+———————-+ | pid | spid | selling | +——+——+———————-+ .. [ 서버 & DB 관련 ]/MySQL 6년 전
MySQL null값 정렬 순서 변경 MySQL 의 ORDER BY 절에서 정렬을 하다보면 값이 null 인 데이터가 처음에 표시되는 경우가 있다. select hiredate from User order by hiredate ASC 이런경우에 NULL 값을 뒤로 정렬시키기 위해서는 아래의 쿼리를 사용하면 됩니다.select hiredate from User order by hiredate is null ASC, hiredate ASC 출처: http://ismydream.tistory.com/158 [창조적고찰] 카테고리 없음 6년 전
class 바꿀때, style 교체 $("body").removeClass("skin-blue").addClass("skin-yellow"); [ Web 관련 ]/jQuery 6년 전
접속포트 조회 (서버와 POST, GET 통신) /*=================================== 접속포트 조회 START ===================================*/-(void) getPort:(NSString *)shopCode{ //전송방식 선택 NSString *method = @"POST"; //값이 존재하면 if(shopCode){ if([method isEqualToString:@"GET"]){ //get 방식일때 //[NSURL URLWithString:[NSString stringWithFormat:@"%@/proc/gameport.asp?param1=%@",SERVER_URL,shopCode]]; NSString *getURL = [NSString stringWithFormat:@"%@/pro.. [ 모바일 관련 ]/아이폰(iOS) 6년 전