일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- swift3
- IOS
- loop
- GCD
- swift
- 신도림 테크노마트
- simulator
- 포켓몬 GO
- Xcode
- Example
- 샘플
- setting
- 얻는법
- 스마트폰
- UITableView
- push
- 공략
- 앱스토어
- 신도림
- 해몽
- UIView
- 페이백
- afterdelay
- Bitcode
- 아이폰7
- error
- LG유플러스
- Check
- 보라카이
- 포켓볼
- Today
- Total
목록Xcode (5)
도래울
프로젝트 내 .git or .svn 을 제거해주면 된다. 터미널 명령어: find ./ -name ".svn" | xargs rm -Rf또는find ./ -name ".git" | xargs rm -Rf 라고 명령을 입력해주면 알아서 하위폴더의 .svn or .git 폴더를 싹찾아서 제거해준다.
Xcode 88.0Xcode 77.3.17.2.1 (Last version supporting OS X 10.10 Yosemite)7.1.17.0.1Xcode 66.46.3.26.26.1.16.0.1Xcode 55.1.15.0.2Xcode 44.6.34.5.24.4.14.3.24.24.14.0.2Even Older Versions3.2.63.1.43.02.52.4.12.32.2.11.51.0
메모리 관련 Bad_Access가 나는 경우(메모리 할당 해제 관련) 어느 에러인지 찾기가 힘든데 NSZombieEnable를 사용하게 되면 release된 메모리를 NSZombieEnable에서 관리하여 추적할 수 있게 만들어준다. 사용법은 다음과 같다. 여기 까지하면 NSZombieEnabled의 등록이 끝이다. 등록후 컴파일을 해주면 된다.테스트를 위하여 다음 코드를 작성하였다.UIButton을 만들고 release를 해준후 title를 추가해주었다. 해당 Button은 이미 release가 되었기 떄문에 메모리 릭이 발생할 것이다. NSZombieEnabled 사용 전 NSZombieEnabled 사용 후 해당 오류코드가 추가된것을 볼 수 있다.
You've implemented -[application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your Info.plist. You've implemented -[ application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your I..