본문 바로가기
반응형

전체 글581

Timer use _Timer = [NSTimer scheduledTimerWithTimeInterval: 5 target:self selector:@selector(play1) userInfo:nil repeats:YES]; 2013. 3. 4.
메모리 릭 에러 memory leak 버그 콘솔에서 버그는 안보이고 잘못된 bad_acces ... 인가.. 잘못된 메모리 주소를 참조하는 에러가 나왔다... 정확한 위치를 지정해 주지 않아서 곤란해 하던 차에 좀비.. 라는 녀석이 있다는 것을 들었다... 좀비 설정 방법은 해당 프로젝트에서 option + command + R 을 누르면 빌드 셋팅 창에서 diagnostic 탭에서 4번째 좀비를 활성해 해주면 해당 문제를 집어 준다... 덕분에 찾았다. .휴... 막막했었는데... 2013. 2. 28.
Gesture 초기화와 재스쳐에 따른 뷰 애니메이션 viewDidload 에 [self initGestureRecognizer]; initGestureRecognizer를 초기화 해준후 특정 제스쳐에 반응 에니메이션을 걸어준다. - (void)initGestureRecognizer { UISwipeGestureRecognizer *swipeRecognizer; swipeRecognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeHandler:)]; swipeRecognizer.direction = UISwipeGestureRecognizerDirectionLeft; [self.view addGestureRecognizer:swipeRecognizer]; [.. 2013. 2. 27.
마이피플과 카카오링크 로의 이미지 전달 각 사에서 제공하는 클래스를 임포트 한후 if (![KakaoLinkCenter canOpenStoryLink]) { return; } NSArray *imageArray = [NSArray arrayWithObject:[self dataFilePath:kFilename]]; NSDictionary *urlInfoDict = [NSDictionary dictionaryWithObjectsAndKeys: @"CloudAthlas", @"title", @"blahblahblah", @"desc", imageArray, @"imageurl", nil]; [KakaoLinkCenter openStoryLinkWithPost:@"text from Storylink http://www.youtube.com/watc.. 2013. 2. 26.
반응형