url 입력창     about:config


network.http.pipelining       false -> true




앱캐시를 켜는 듯??


http://firefoxinside.tistory.com/31

Posted by tenn
,

[firefox] 설정 초기화

etc 2014. 2. 25. 11:58

파이어폭스 설정 초기화


① url 입력창에 about:support 입력

② reset firefox 클릭




http://blog.creation.net/530

Posted by tenn
,

#import <sys/sysctl.h>


    size_t size;

    sysctlbyname("hw.machine"NULL, &size, NULL0);

    char *machine = malloc(size);

    sysctlbyname("hw.machine", machine, &size, NULL0);

    NSString *platform = [NSString stringWithUTF8String:machine];

    free(machine);

    

//iPhone5s의 경우,  platform이"iPhone6"


//angeOfString:@"iPhone6"].location != NSNotFound  <- 이렇게 체크





* iPod5th : iPod5,1

* iPhone4 : iPhone3,1

* iPhone4S : iPhone4,1

* iPhone5 : iPhone5,2

* iPhone5s : iPhone6,1



Posted by tenn
,