일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
- lb
- tomcat
- PM 2.5
- 포켓몬고
- 창문형 에어컨
- 로드밸런싱
- ubuntu-server
- Linux
- 기아 타스만
- 오징어게임3
- 기아타스만
- ai 창작 소설
- Docker
- 마스크
- 포켓몬 고
- 기아 K4
- IOS
- java
- 공기청정기
- 초미세먼지
- 코로나
- OSX
- 클러스터링
- 크롬
- 포켓몬고 플러스
- aws
- sf
- 시간의 심장
- 미세먼지
- 대체 역사 소설
- Today
- Total
목록IOS (4)
살며사랑하며
APNS를 쓰기위한 기본 설정 == 앱 델리게이트에 추가== - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for customization after application launch. /* // 어플리케이션 실행시 옵션사항 중 Push 서비스 관련 정보를 추출 NSDictionary *userInfo = [launchOptions objectForKey:UIApplicationLaunchOptionsRemoteNotificationKey]; if(userInfo != nil) { [self application:appli..
+(NSString *)urlEncodeValue:(NSString *)str{str = [str stringByAddingPercentEscapesUsingEncoding:0x80000000 + kCFStringEncodingUnicode];return (__bridge NSString *) CFURLCreateStringByAddingPercentEscapes(kCFAllocatorDefault,(__bridgeCFStringRef)str,NULL,CFSTR("?=&+"),kCFStringEncodingUTF8); }
웹칼라를 UICOLOR로 변경하는 툴입니다. +(UIColor*)colorWithHexString:(NSString*)hex{NSString *cString = [[hex stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]uppercaseString];// String should be 6 or 8 charactersif ([cString length]
+(BOOL) isRooting { NSString *filePath = @"/Applications/Cydia.app";#if defined(__ROOTING_TRUE__) return TRUE;#endif if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]) return TRUE; else return FALSE;}