cocos2d-x 3.0 관련 컴포넌트 사용

|
이번에 3.0 으로 코코스 2d가 바뀌면서 컴포넌트 개념을 많이 사용하는 것 같습니다.
참고하시면 좋을것 같아서 퍼옵니다.

kasa080622cppcompsys.ppt



출처 : http://www.dev3d.net/bbs/view.php?id=pds&page=3&sn1=&divpage=1&sn=off&ss=on&sc=on&select_arrange=headnum&desc=asc&no=106

Trackback 0 And Comment 0

ios7 UITableView 사용시 배경화면 흰색으로 나오는 현상

|
ios7은 UITableView의 셀 배경이 기본으로 흰색으로 설정되있는 것 같습니다.


cellForRowAtIndexPath 함수에 아래의 내용을 추가합니다.

cell
.backgroundColor = [UIColor clearColor]; cell.backgroundView = [[UIView new] autorelease]; cell.selectedBackgroundView = [[UIView new] autorelease];


Trackback 0 And Comment 0

iOS7 상태바 안보이게 설정하기

|

 iOS가 7 로 되면서 시간과 배터리 등의 정보가 상태바에 표시되는 증상이 있습니다. into.plist 파일에 View controller-based status bar appearance를 Add Row하시고 속성값을 NO로 세팅해주면 됩니다. 이런 현상이 사라지게 됩니다.

Trackback 0 And Comment 0