일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- setting
- Check
- 앱스토어
- LG유플러스
- 페이백
- swift
- 샘플
- Bitcode
- loop
- GCD
- 포켓볼
- 신도림
- UIView
- error
- 포켓몬 GO
- swift3
- 스마트폰
- afterdelay
- Xcode
- 아이폰7
- 신도림 테크노마트
- UITableView
- Example
- 해몽
- 공략
- IOS
- 보라카이
- 얻는법
- push
- simulator
- Today
- Total
목록개발/iOS (97)
도래울
extension UIViewController { func showToast(message : String) { let toastLabel = UILabel(frame: CGRect(x: self.view.frame.size.width/2 - 75, y: self.view.frame.size.height-100, width: 150, height: 35)) toastLabel.backgroundColor = UIColor.black.withAlphaComponent(0.6) toastLabel.textColor = UIColor.white toastLabel.textAlignment = .center; toastLabel.font = UIFont(name: "Montserrat-Light", size:..
let imageCache = NSCache() extension UIImageView { func loadImageUsingCache(withUrl urlString : String) { let url = URL(string: urlString) self.image = nil // check cached image if let cachedImage = imageCache.object(forKey: urlString as NSString) as? UIImage { self.image = cachedImage return } // if not, download image from url URLSession.shared.dataTask(with: url!, completionHandler: { (data, ..
미국 앱스토어 반영 시간3월 둘째주 일요일 -- 11월 첫번째 일요일 (서머타임 적용) : 한국 시간 오후12시11월 첫번째 일요일 -- 3월 둘째주 일요일 (서머타임 미적용): 한국 시간 오후1시
// CGRectMake has been deprecated - and should be let, not var let label = UILabel(frame: CGRect(x: 0, y: 0, width: 200, height: 21)) // you will probably want to set the font (remember to use Dynamic Type!) label.font = UIFont.preferredFont(forTextStyle: .footnote) // and set the text color too - remember good contrast label.textColor = .black // may not be necessary (e.g., if the width & heigh..
UIKeyboardFrameBeginUserInfoKey - > UIKeyboardFrameEndUserInfoKey
빠른 앱 심사참작이 가능한 상황에 직면하는 경우 빠른 앱 심사를 요청할 수 있습니다. 이러한 상황으로는 App Store에 있는 앱의 심각한 버그를 수정하거나 직접 관련된 이벤트와 동시에 앱을 출시해야 하는 경우 등이 해당됩니다.긴급 버그 수정 App Store에 있는 앱의 심각한 버그를 수정하는 업데이트를 제출한 후 빠른 심사를 요청하는 경우에는 현재 앱 버전에서 버그를 재현하는 단계를 기재해야 합니다.시간이 중요한 이벤트 이벤트와 관련된 앱의 경우 iTunes Connect에서 앱 출시를 계획하고 예약하는 것이 좋습니다. 하지만 앱이 아직 심사 중이고 이벤트 실행일이 곧 다가오는 경우 빠른 앱 심사를 요청할 수 있습니다. 요청을 제출할 때 이벤트, 이벤트 날짜 및 이벤트와 앱의 관련성을 기재하는 것이..
this action could not be completed try again 22421 구글링 결과 재시도 하라는데 재시도 3회 계속 실패, 해결방법 1. window - organizer - 해당앱 - export 2. xcode - open developer tool - application loader - app 전송 - 선택 - 아까 export로 뺀거 선택 - 열기 업로드 성공
print("completionHandler시작") self.callBackTest(param1: "param1") {retStr in print("completionHandler끝 ret : \(retStr)") } print("completionHandler비동기") private func callBackTest(param1 :String ,completionHandler:@escaping (_ ret : String) -> Void) { DispatchQueue.global(qos: .userInitiated).async { print(param1) for i in 0..
프로젝트 내 .git or .svn 을 제거해주면 된다. 터미널 명령어: find ./ -name ".svn" | xargs rm -Rf또는find ./ -name ".git" | xargs rm -Rf 라고 명령을 입력해주면 알아서 하위폴더의 .svn or .git 폴더를 싹찾아서 제거해준다.
textField.autocorrectionType = .no