일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- VS2008
- self-signed ssl
- net
- EUC-KR
- C#
- MFC
- 와이브로
- php
- phpmailer
- docker
- Antialiasing
- PDA
- 설치제거
- 한 번만 실행
- .net
- ClickOnce
- 블루투스 헤드셋
- API
- Font
- protobuf-c
- plcrashreporter
- GDI
- crashlog
- C/C++
- 자바스크립트
- 데이터 전달
- 기념일관리
- M8200
- JavaScript
- 크래시로그
- Today
- Total
목록분류 전체보기 (254)
~☆~ 우하하!!~ 개발블로그
참고 URL : http://iphonesdkdev.blogspot.com/2009/01/codesign-error-valid-provisioning.html CodeSign error: a valid provisioning profile is required "CodeSign error: a valid provisioning profile is required for product type 'Application' in SDK 'Device - iPhone OS 2.2" This error will appear when you update your provisioning profile in iPhone SDK 2.2 or after the expiration of developer certificate..
LabelSizable : from UIView 설정된 텍스트가 출력될 수 있을 만큼의 너비로 컨트롤의 너비를 재설정함. ScalableLabel : from UILabel 고정된 너비에 텍스트가 모두 출력될 수 없는 경우에 텍스트를 Scale 해서 출력한다. IndexValueLabel : from UIView 위 또는 아래 화살표 이미지와 함께 색상적용 가능한 숫자값 출력용 ImageIndexValueLabel : from UIView 상승 및 하락 이미지를 포함한 레이블 UpDownValueLabel : from UIView 등락에 따른 화살표 이미지와 천단위 콤마 표시 레이블의 조합 UpDownPercentValueLabel : from UIView CurrencyValueLabel : UIVie..
// ResponseTr 의 헤더에서 데이터의 크기 가져오기 int nBodyLength = [[[[NSString alloc] initWithBytes:(*ResponseTr).Header.szBodyMessageLen length:4 encoding:NSASCIIStringEncoding] autorelease] intValue]; // Body 에 들어있는 아이템 개수 구하기 int nItemCount = (nBodyLength - sizeof((*ResponseTr).Body.szSearchValue)) / sizeof(MOBILO_2230_RESPONSE_BODY_ITEM); NSLog(@"Body Length = %d, Item Count = %d", nBodyLength, nItemCount);
NSString* strContents = @"문자열 뒤쪽에 공백들이 들어있는 샘플 텍스트입니다. "; strContents = [strContents stringByTrimmingCharactersInset:[NSCharacterSet whitespaceCharacterSet]];
NSString *num = [[NSUserDefaults standardUserDefaults] stringForKey:@"SBFormattedPhoneNumber"]; NSLog(@"My Phone Number = [%@]", num); // +82 10-xxxx-xxxx
아이폰 보호필름으로 Power Support 사의 Anti glare (지문방지) 보호필름 케이스로는 Power Support 사의 Air Jacket 반투명 블랙. 괜찮다~~
윈도우즈 OS에서는 Shift + Space 로 한영전환을 했다. MacOS 에서는 Command + Space 가 기본 한영전환 단축키이다. OS를 번갈아가면서 사용하는 경우에는 되도록이면 어느 한 쪽으로 일치시키는 것이 작업능률 향상에 도움이 된다. 바람입력기라고 검색하여 바람입력기를 다운로드받는다. 설치는 다운로드받은 바람입력기 디렉토리로 이동하여 터미널을 열어서 다음과 같이 입력한다. sudo sh install.sh 관리자계정의 비밀번호를 입력해야 한다.
UIControl 에 대해서 addTarget 메시지를 통해서 이벤트를 할당할 수가 있다. 그런데 주의할 점이 있다. UIControl 에 UIView, UIImageView, UILabel 등과 같은 뷰를 얹은 다음에 해당 뷰에 대해서 userInteractionEnabled 속성을 YES(TRUE) 로 설정하지 않아야만 한다. YES 로 설정하면 addTarget 메시지로 설정한 이벤트가 처리되지 않는다.