아이폰5의 길쭉한 화면과 예전의 화면을 볼수 있는 토글 버튼(스토리보드 하단에 위치)이 스토리 보드에 있는데,


하나 맞추고 다시 다른 것을 맞추면 먼저 맞춰져있던것이 다 헝클어지는 것이었다.


그럴 땐, size inspector(오른쪽 메뉴 끝에서 두번째) 잘 맞추면 된다.

Posted by tenn
,




Document 디렉토리 비우기 (서브디렉토리 & 파일 지우기)



   NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

    

   NSArray *fileList = [filemgr subpathsAtPath:[paths objectAtIndex:0]];

        

   for(int i=0; i < fileList.count; i++){

            

            NSString *subPath = [fileList objectAtIndex:i];

            

            NSLog(@"%d : %@", i, subPath);

            

            NSString *currentPath = [NSString stringWithFormat:@"%@/%@", [paths objectAtIndex:0], subPath];


            [filemgr removeItemAtPath:currentPath error:NULL];

   }





파일 생성일


            NSDictionary* fileAttribs = [[NSFileManager defaultManager] attributesOfItemAtPath:path error:nil];

            NSDate *result = [fileAttribs fileCreationDate]; //or fileModificationDate



http://stackoverflow.com/questions/3642013/objective-c-get-file-creation-date








Posted by tenn
,



//동작확인

// xcode 4.6

// ipod touch 5th


.h

//delegate

@interface ViewController : UIViewController <UITextFieldDelegate>



.m

- (void)viewDidLoad

{

    [super viewDidLoad];

    tf.delegate = self;

}


- (BOOL)textFieldShouldReturn:(UITextField *)textField{

    if(textField == tf){

        [textField resignFirstResponder];

    }

    return YES;

}





Posted by tenn
,