개발자료(219)
-
[iOS9] 사이트 App Transport Security(ATS) Connection 체크
Mac에 설치된 nscurl 을 이용해서 체크가능하다. Result : PASS/FAIL 로 결과가 나온다 # /usr/bin/nscurl --ats-diagnostics --verbose URL ## 정상일 경우 $ /usr/bin/nscurl --ats-diagnostics --verbose https://google.com Starting ATS Diagnostics Configuring ATS Info.plist keys and displaying the result of HTTPS loads to https://google.com. A test will "PASS" if URLSession:task:didCompleteWithError: returns a nil error. ===========..
2017.04.21 -
Universal Static Library Script
인터넷에서 구한 코드 개인적으로 조금씩 커스텀 한 버전 ## c.f. StackOverflow question/answer here: http://stackoverflow.com/questions/3520977/build-fat-static-library-device-simulator-using-xcode-and-sdk-4## Version 2.5## Latest Change:# - The "copy headers" section now respects the build setting for the location of the public headers## Purpose:# Create a static library for iPhone from within XCode# Because Apple staff..
2017.04.10 -
ListView Divider 제거
# Layout XML 만약을 위해 dividerHeight 까지 같이 설정해 준다. 투명으로도 처리 가능 android:divider="@android:color/transparent" # Java Code listView.setDivider(null); //listView.setDivider(new ColorDrawable(android.R.color.transparent)); listView.setDividerHeight(0);
2017.03.16 -
Firebase 클라우드메시징 서버키 확인방법 2017.02.06
-
NSArray - NSPredicate
## NSPredicate - 검색 # 특정 문자로 시작하는 데이터 검색 NSPredicate *Predicate = [NSPredicate predicateWithFormat:@"properties.name_full_char_kor beginswith[c] %@", @"text"]; [mutableArray filterUsingPredicate:Predicate]; # 특정 문자를 포함하는 데이터 검색 NSPredicate *Predicate = [NSPredicate predicateWithFormat:@"properties.name_full_char_kor contains[c] %@", @"text"]; [mutableArray filterUsingPredicate:Predicate]; ** NSA..
2017.01.10 -
[Debugging] Remote Virtual Interface Tool(rvictl)을 이용한 iOS 디바이스 네트워크 패킷 캡쳐
## 작업 전 준비사항 # iOS 디바이스의 Identifier(UUID)값을 알아야 한다. # iOS 디바이스는 USB연결상태로 네트워크 패킷 캡쳐 ## rvictl 명령 # Virtual Interface로 등록 $ rvictl -s Starting device 00000000-0000000000000000 [SUCCEEDED] with interface rvi0 # Virtual Interface 목록 확인 $ rvictl -l Current Active Devices: [1] 00000000-0000000000000000 with interface rvi0 # Virtual Interface 삭제 $ rvictl -x Stopping device 00000000-0000000000000000 [S..
2016.11.30