backup/iOS
-
Apple Mach-O Linker error 해결backup/iOS 2014. 5. 27. 00:48
Gimbal SDK 사용 중 샘플 프로젝트를 다운받아 수정 후 빌드.라이브러리를 프로젝트 내부로 복사하고 설정업데이트?? Warning 해결하고 나서 빌드하자 Apple Mach-O Linker error가 나옴.(상세에는 linker command failed with exit code 1...) armv7s용 라이브러리를 지원하지 않아서 생기는 문제라고,Target의 Build Settings에서 Architectures의 Other를 선택 후 $(ARCHS_STANDARD) 제거 후 i386과 armv7 추가 후 빌드하면 에러 사라짐. 빌드 성공하고 설정 다시 원래대로 바꿔도 잘 되는 듯... 바꾸면 안됨...
-
iPhone memory 관리backup/iOS 2011. 10. 26. 16:43
http://akosma.com/2009/01/28/10-iphone-memory-management-tips/
-
이미지 회전backup/iOS 2011. 9. 1. 11:01
#define DEGREES_TO_RADIANS(angle) (angle / 180.0 * M_PI) - (void)rotateImage:(UIImageView *)image duration:(NSTimeInterval)duration curve:(int)curve degrees:(CGFloat)degrees { // Setup the animation [UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:duration]; [UIView setAnimationCurve:curve]; [UIView setAnimationBeginsFromCurrentState:YES]; // The transform matrix CGAffineT..
-
iOS Touch Event 관련 정리backup/iOS 2011. 7. 25. 18:53
❖ UITouch : 현재 뷰에 대한 터치 정보 @property(nonatomic,readonly) NSTimeInterval timestamp; : 터치가 발생한 시간을 초 단위로 나타낸다. @property(nonatomic,readonly) UITouchPhase phase; : 현재 터치의 상태를 나타낸다.(5가지) UITouchPhaseBegan UITouchPhaseMoved UITouchPhaseStationary : 터치된 상태로 정지 UITouchPhaseEnded UITouchPhaseCancelled : 시스템이 터치에 대한 추적을 취소 @property(nonatomic,readonly) NSUIntegertapCount; : 화면에 연속적으로 터치한 횟수 @property(non..