티스토리 뷰

Computer/iOS

20141118

TOYOBA 2014. 11. 18. 19:46

1. dismissViewController 중에 black screen white screen등장.

- empty screen이 등장할 때가있는데 window hierchy가 제대로 형성 되지 않은 경우 발생한다. 

제대로 preseting되어있지 않다는 의미.

presentingViewController :아직도 잘 모르겠지만 여태까지 띄운... presentViewcontroller : a~~~~ 로 띄운것 같다.

self.presentingViewController.presentingViewController ...로 계속 들어갈 수 있다.

presentedViewController 

:: 얘도 마찬가지인데 presentingViewController랑 presentedViewController랑 뭐가 다른지 잘 모르겠다.

테스트를 해봐야되는데 일단 문제를 해결했으므로 넘어감.


2. date 값 처리 관련

1) java MessageFormatㅡㅇㄹ ios에서는 어떻게 구현하지 고민하다가, 어짜피 stringWithFormat이라는 기능이 있어서 Format값을 바꾸어가 며 출력할 수 있도록 만들었다.

2) NSDate ->  long값으로 변경하는거

[@(floor([date timeIntervalSince1970] * 1000)) longLongValue]

floor가 뭐징?


기본적으로 이 값은 double값이다. long으로 바꾸고 싶으면 위의 방법을 사용해야 하는것 같다. [date timeIntervalSince1970]



3. 

NSString *localeString = [[NSLocale preferredLanguages] objectAtIndex:0];