본문 바로가기
반응형

전체 글581

앱 제출방법 - 까먹기 전에.. 이번 경우는 버전 업데이트다. https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa 로 가서 로그인 로그인 후 업데이트 할 앱으로 가서 하단에 뉴 버전 클릭 후 관련 정보들 입력해준다. upload ready 상태까지 간후에 xcode 에서 cmd + alt + R 을 눌러서 디버그 모드를 릴리즈로 바꾸로 좀비같은것은 꺼준다. clean한번 해준후 cmd + B 버튼으로 빌드 해주고 // 빌드 타겟을 시뮬레이터로 했더니 프로덕트에는 생산 되지 않았다.. // 이것땜시 앱을 한번더 올려야 되는 번거로움 발생 타겟을 기기로 해준후에 빌드 해야 한다. 나서 생성된 app파일을 파인더 보기로 열어주고application loader 를 실행 시켜서 현재 업.. 2013. 4. 19.
숨겨진 라이브러리 폴더로 가기 / library Finder 메인 메뉴에서 [이동] > [폴더로 이동] 메뉴를 실행합니다. 2) 폴더 이동 대화상자에 “~/Library” 를 입력하고, [이동] 버튼을 클릭합니다. 2013. 4. 18.
해당 개발자 관련 app정보 링크 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms-apps://itunes.com/apps/개발자명"]]; 2013. 4. 16.
View Shadow UIView *testView = [[UIView alloc] initWithFrame:CGRectMake(20.0f, 50.0f, 280.0f, 100.0f)];UIBezierPath *shadowPath = [UIBezierPath bezierPathWithRect:testView.bounds]; testView.backgroundColor = [UIColor yellowColor];[testView.layer setMasksToBounds:NO];[testView.layer setShadowColor:[[UIColor blackColor] CGColor]];[testView.layer setShadowOffset:CGSizeMake(0.0f, 0.0f)];[testView.layer setShado.. 2013. 4. 9.
반응형