아이 폰 개발 과정 에서 의 작은 기술 총화

2001 단어 게임.quartz
1.무 작위 헤더 파일 참조
    #import <time> 
    #import <mach> 

   srandom()    
  srandom((unsigned)(mach_absolute_time() &amp; 0xFFFFFFFF));

        random()        

 
 
2 UIImageView 에서 그림 회전
 
float rotateAngle = M_PI; 
CGAffineTransform transform =CGAffineTransformMakeRotation(rotateAngle); 
imageView.transform = transform;

 
 상기 코드 회전 imageView,각 도 는 rotateAngle,방향 은 스스로 테스트 할 수 있 습 니 다!
 
3.Quartz 에서 회전 점 을 어떻게 설정 합 니까?
 
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"bg.png"]]; 
imageView.layer.anchorPoint = CGPointMake(0.5, 1.0);

 
 이것 은 회전 점 을 아래쪽 중간 으로 설정 하 는 것 입 니 다.Quartz Core.framework 에서 야 지 지 를 받 았 다 는 것 을 기억 하 세 요.
 
 4.plist 파일 을 만 들 고 저장 합 니 다.
 
NSString *errorDesc; //         
NSMutableDictionary *rootObj = [NSMutableDictionary dictionaryWithCapacity:4]; //NSDictionary, 

NSData          plist   

NSDictionary *innerDict;
NSString *name;
Player *player;
NSInteger saveIndex; 
for(int i = 0; i      while(tmp = [nse nextObject])
{ 
    NSString *stringBetweenBrackets = nil; 
    NSScanner *scanner = [NSScanner scannerWithString:tmp];
   [scanner scanUpToString:@"" ntoString:&amp;stringBetweenBrackets];
   NSLog([stringBetweenBrackets description]); 
}




 
 서 류 를 읽 고 쓰 는 것 에 대해 서 는 보충 이 있 습 니 다.잠시 여기까지 하 겠 습 니 다.랜 덤 수 와 파일 읽 기와 쓰 기 는 게임 개발 에 자주 사용 된다.그래서 일부 내용 을 여기에 두 고 여러분 과 공유 할 수 있 고 기록 으로 삼 아 찾기 편 합 니 다.
 
 6 NavigationBar 숨 기기
 
[self.navigationController setNavigationBarHidden:YES animated:YES]; 

  숨겨 진 뷰 컨트롤 러 에서 사용 하면 됩 니 다.

좋은 웹페이지 즐겨찾기