

ios Appassets.xcassets 화일을 실수로 삭제한경우
original source : https://stackoverflow.com/a/21198302/3151712
I just did this myself and figured out how to quickly remedy the issue.
위와 같이 작성하고 app icon관련 에러가 발생하면 app icon을 임의로 만들어 주어야 한다.
ios Appassets.xcassets 화일을 실수로 삭제한경우
original source : https://stackoverflow.com/a/21198302/3151712
I just did this myself and figured out how to quickly remedy the issue.
위와 같이 작성하고 app icon관련 에러가 발생하면 app icon을 임의로 만들어 주어야 한다.
How can I make auto-complete display a list in Xcode
original source : https://stackoverflow.com/questions/954320/how-can-i-make-auto-complete-display-a-list-in-xcode
best answer : https://stackoverflow.com/a/954334/3151712
Press the escape key when auto-complete makes the first suggestion. This will display the list.
control + space
also works in the latest Xcode.
my review point is 9/10
firebase 에 관해 쉽게 접근할수 었었다.
https://youtu.be/cw0gLZHJOiE?t=2m view controller를 아래로 내려가게 하면서 닫고 새로운 view controller가 옆에서 나오게 하는 작업 ( dismissViewControllerAnimated )
https://youtu.be/cw0gLZHJOiE?t=12m15s xcode console에서 obj 값을 출력 ( po obj이름 )
https://youtu.be/cw0gLZHJOiE?t=12m37s FIRAuth를 이용해서 uid를 구하는 방법 , timestamp 만드는 예시 ( FIRAuth.auth().currentUser.uid , NSDate().timeIntervalSince1970 )
https://youtu.be/cw0gLZHJOiE?t=17m30s firebase database에서 데이터 가져오기
https://youtu.be/cw0gLZHJOiE?t=20m17s dictionary로 되어있는 정보를 이용 obj를 만드는 쉬운 방법 ( setValuesForKeysWithDictionary )
https://youtu.be/cw0gLZHJOiE?t=22m31s firebase작업은 다른 background thread에서 작동한다. main queue에 update하는 경우 ( dispatch_async , dispatch_get_main_queue )
Adding a Subfolder in XCode project
Not everyone have the use case to add new sub folder in their iOS project. But when some one do, it s kinda confusing for developers to do that.
“Add new Group” is not same as “Adding a sub folder”.
When I started looking into adding the sub folder, it took me at least an hour to figure that small thing out. May be its just because I am not the best. So, I decided to write this post to help other developers to become the best and do the same thing in 15 minutes which took me an hour to do.
Adding a Group is more of cleaning the project organization. You want to “group” the similar files together, but it does not mess up your project build. It just makes your code look more organized and easy for you find the related files in the same group.
If you Right click on the project and “Show in finder”, these groups will not show up in the project directory.
But there is a different steps you need to follow in order to create a sub folder in the project directory. Note: These subfolders don’t even show up in the project hierarchy while you are looking at your xcode project. But, when you Right-click on the project > Show in Finder, you will see the subfolders in there.
step 1-4으로 하면 실제 폴더도 생기고 화일도 있으나 xcode에 보여지지 않는다. 그래서 옮기려는 폴더를 그대로 드래그해서 navigator에 드랍했다.
Steps to add a sub folder:
1) Right click on the project > Show in Finder
2) Click on the project
3) Add “New Folder”
4) Drag and drop the files into that folder
5) Come back to the Xcode project, on the left side: click on the file you just added.
*At this point, your new file might show up in red color, since xcode is not able to find the location of the file you just added inside the folder.
6) On the right side, under the File Inspector.
7) Change the path for the file which you added to the new folder by clicking the folder icon (circled).
tab bar controller 의 사용법 (tab bar controller 와 view controller 연결하기, tab bar추가하기) 2분경 부터 보면 된다.