본문 바로가기

개발도구

[ios] 탭바 사라지게 하기 CGRect frame = self.tabBarController.view.superview.frame; CGFloat offset = self.tabBarController.tabBar.frame.size.height; frame.size.height += offset; self.tabBarController.view.frame = frame; 더보기
[ios] APP URL link - 아이폰 앱끼리 데이터 전송하기 참고링크 : http://mobile.tutsplus.com/tutorials/iphone/ios-sdk-working-with-url-schemes/ 더보기
[ios] 화면 세로 고정 ios - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return YES; } 검색에 주석된 위의 것을 주석을 풀면 된다고 하는데, 아무리 해도 안된다. 직접 찾아보니, 위와 같이 간단하게 처리 할수 있다. 더보기
아마존 EC2 관련 포스팅 모음 아마존 EC2 관련 포스팅 모음 sudo vi 처럼 모든 명령에 root 의 권한을 준다. 클라이언트 툴을 사용시엔 chmod 로 폴더 또는 파일에 권한을 준다 *최근 종합EC2http://opentutorials.org/course/488/2616 권한 성절 1 - http://jjackq.tistory.com/entry/%EB%A6%AC%EB%88%85%EC%8A%A4LINUX-%EA%B0%84%EB%8B%A8-%EA%B0%95%EC%A2%8C3-%EA%B6%8C%ED%95%9C%EC%84%A4%EC%A0%95 2 - http://youknows.tistory.com/6 EC2 가입 - http://trend21c.tistory.com/1292 EC2 Instance (1-1) - 접근하기 : htt.. 더보기
[ios] 아이폰 디자인 가이드 http://www.idev101.com/code/User_Interface/sizes.html 더보기
[ios]시간, 애니메이션-그럼컷넘기기 // 애니메이션 - (void)viewDidLoad { imgView.animationImages=[NSArray arrayWithObjects: [UIImage imageNamed:@"lori.png"], [UIImage imageNamed:@"miranda.png"], [UIImage imageNamed:@"taylor.png"], [UIImage imageNamed:@"ingrid.png"], [UIImage imageNamed:@"kasey.png"], [UIImage imageNamed:@"wreckers.png"], nil]; imgView.animationDuration=20.0; imgView.animationRepeatCount=0; [imgView startAnimating]; [sel.. 더보기
[ios] view 투명설정 인터페이스 빌더에서 alpha 값을 조절하면 view 안의 전체 객체도 알파값이 먹어 투명하게 안되는것을 .. 찾다보니.. 아래처럼 간단하게 해결할수 있다.// 백드라운드만 불투명으로 설정 // White : 명암 (0.0f -> 1.0f : 검정색 -> 흰색) // alpha : 불투명도 (0.0f -> 1.0f : 투명 -> 불투명) [self.view setBackgroundColor:[[[UIColor alloc] initWithWhite:0.0f alpha:0.5f] autorelease]]; 더보기
[ios] image cache, 이미지 캐쉬 https://github.com/toptierlabs/ImageCacheResize SDWebImage-master.zip 반드시Copy SDWebImage and UIImage+Resize folders content to your project.Add the frameworks ImageIO.framework and MapKit.frameworkImport UIImageView+WebCache.h.해줘야 한다!! https://github.com/jakemarsh/JMImageCache 더보기
[iOS] View 이동 전환 하기 총정리 펌)http://www.digipine.com/programming/17108 뷰의 추가 또는 삽입 [self.view insertSubview:viewController.view atIndex:0]; [self.view addSubview:viewController.view]; [self presentModalViewController:viewController animated:YES]; --> 앤 모달뷰 [self.navigationController pushViewController:addView animated:YES]; 뷰의 순서 바꾸기[self.view bringSubviewToFront:self.tempViewController.view]; -> tempViewController.view를 .. 더보기
[iso] tableview Header - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section { return 55; } Step 2: create & return the customized section header. - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { UIView *aView =[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 55)]; UIButton *btn=[UIButton buttonWithType:UIButtonTypeCustom]; [btn setFrame:.. 더보기