Xcode 단축키 정리

mac/iPhone 2010. 3. 2. 15:21
Xcode 설정 : cmd + ,
Build and Run : cmd + r

자동완성 : esc or f5 or ctrl + ,
자동완성 매크로 : ctrl + .
select next placeholder (자동완성 후 파라매터 여러개 일시 바로 이동) : ctrl + /
select previous placeholder (위의 반대 이동 ) : shift + ctrl + /

api 검색 : 마우스 커서 선택 후 option + 더블클릭
header파일과 source파일 창 전환: ctrl + option + 방향키위
에디터 화면 zoom : shift + cmd + e
에디터 풀화면 : shift + option + cmd + e

Project Find : shift + cmd + f
Open Quickly : shift + cmd + d

:

javascript 세자리마다 콤마(,) 찍기

script 2010. 2. 18. 15:45
//콤마찍기
function numberFormat(num) {
	var pattern = /(-?[0-9]+)([0-9]{3})/;
	while(pattern.test(num)) {
		num = num.replace(pattern,"$1,$2");
	}
	return num;
}

//콤마제거
function unNumberFormat(num) {
	return (num.replace(/\,/g,""));
}
:

EditPlus 3 template 파일 경로

Program 2010. 2. 17. 17:27
- Windows 7
C:\Users\Administrator\AppData\Roaming\EditPlus 3


HTML 페이지 열기와 HTML 도구모음 표시 파일 (수정한 셋팅파일)


:

[Link] Xcode 키보드 단축키 (png, pdf)

mac/iPhone 2010. 2. 1. 15:21
Xcode 키보드 단축키를 png,pdf 파일로 정리해놓은 Link

png download Link : http://www.1729.us/xcode/Xcode%20Shortcuts.png
pdf download Link : http://www.1729.us/xcode/Xcode%20Shortcuts.pdf
Link url : http://cocoasamurai.blogspot.com/2008/02/complete-xcode-keyboard-shortcut-list.html
: