Programing Language
-
-
iOS) collectionview cell을 가운데에 위치 시키기Programing Language/iOS(Swift) 2020. 5. 22. 00:45
관련자료 https://stackoverflow.com/questions/34267662/how-to-center-horizontally-uicollectionview-cells How to center horizontally UICollectionView Cells? I have done some research, but I couldn't find any code example on how to center cells in a UICollectionView horizontally. instead of the first cell being like this X00, I want it to be like this ... stackoverflow.com
-
-
iOS) iOS에서 안드로이드의 sharedpreference(쉐어드프리퍼런스)와 같은 기능Programing Language/iOS(Swift) 2020. 5. 13. 18:41
www.stackoverflow.com/a/42496104 iOS Equivalent For Android Shared Preferences I am porting an Android app to iOS, one thing I used was the Shared Preferences in Android to save each time a level was complete. That way when the user gets back into the app, they can see they ... stackoverflow.com 위의 자료는 안드로이드에서 sharedpreference(쉐어드프리퍼런스) 사용하실줄 안다는 가정하에 보시면 바로 이해가 되실겁니다. sharedpreference == UserDe..
-
Linux) lsof - 실행 중인 파일과 프로세스 정보 출력Programing Language/리눅스 2020. 5. 8. 14:53
※ 요약 리눅스 명령어 lsof는 현재 사용중인 파일들의 목록과 함께 해당 파일의 소유자, 관련 프로세스, 크기, 타입 등의 정보를 출력해주는 명령어다. ※ 경로 /usr/sbin/lsof ※ 사용법 lsof [옵션]... [파일]... ※ 옵션 옵션 설명 -a 파일을 선택하는데 AND 연산으로 대상을 출력 -c 지정한 COMMAND 필드만 출력 -F 지정한 구분자로 필드를 구분하여 출력 -g 지정한 그룹 아이디를 사용하는 관련 프로세스를 출력 -i 현재 사용되는 소켓 정보를 출력 -l 로그인 사용자명 대신에 UID를 출력 -n 호스트명 대신에 IP주소를 출력 -P 포트 서비스명 대신에 포트 번호를 출력 -r 지정한 초의 주기로 반복해서 출력 (디폴트 값은 15초) -s 파일의 크기를 출력 -V 보다 상..
-