일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- PHP 정규식 예제
- php 배열제거
- 비밀번호정규식
- PHP 구글 OTP 인증
- 우분투 mysql 비밀번호 없이 로그인 될때
- usb efi 시스템 파티션 삭제
- mysqldump: Got error: 1045
- httpd.conf 보안 설정
- sha-2 root
- apache mod rewrite
- 구글 OTP 인증
- 숫자 3자리(천단위) 마다 콤마 찍기
- html pdf 변환
- group_concat 구분자
- 파라미터 & 오류
- bootstrap
- 아파치 웹 서버의 정보 숨기기
- javascript
- libxrender1
- mysql root 비밀번호 변경
- 비밀번호검증정규식
- bootstrap modal
- PHP 구글 OTP 연동
- wkhtmltopdf 실행 오류
- apple push notification service (apns) is changing
- (using password: YES)" when trying to connect
- modsecurity 설치
- 자바스크립트비밀번호검증
- mariadb upgrade
- php 이미지 url 검증 함수
- Today
- Total
목록Program Language/Swift (5)
투덜이 개발자

Apple mac 인증서를 1년마다 교체를 하는데 매번 하는거지만 힘들다. 그런데 올해는 더 힘들었다... APNs Development iOS 서비스 명칭이 Apple Sandbox Push Services 로 바뀐듯 하다. 인증서를 다 교체하고 나서 Push Serice '인증서를 신뢰하지 않음'이 발생 ㅠㅠ 구글 검색하다..겨우 해결 방법을 찾았다. Worldwide Developer Relations - G4 (Expiring 12/10/2030) Developer ID - G2 (Expiring 09/17/2031) 를 설치하고 나서 해결이 되었다.. https://wookiphone.tistory.com/147 [MAC OS] 인증서 교체 시 '인증서를 신뢰하지 않음'이 뜰때 =========..
% sudo gem install cocoapods % brew install cocoapods % brew --version % pod --version
IOS WEBVIEW 파일 업로드 관련 웹뷰에서 사진 업로드시 이미지만 처리하고 싶었으나 IOS 경우 아래와 같이 했을경우 동영상도 검색이 됩니다. 아래와 같이 accept="image/*" 로 변경하고 아니 이미지만 검색되는것을 확인하였습니다. 갤러리 선택이 아닌 카메라 선택만 사용시 아래와 같이 capture 추가하여 사용하시면 됩니다.
swift4 url 이미지 클릭 이벤트 처리 import UIKit class ViewController: UIViewController { @IBOutlet weak var mimgView: UIImageView! // let urlKey = "http://www.kidis.co.kr/images/logo_kidis.png" let urlKey = "http://html.com/wp-content/uploads/flamingo.jpg" override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. if let url = URL(string: urlKey){ do { let data = ..
실행중인 앱을 종료하고 싶을때가 이벤트 처리 import UIKit class ViewController: UIViewController { @IBAction func btnClick(_ sender: Any) { let alert = UIAlertController(title: "앱종료하시겠습니까?", message : "저장하지 않은 내용은 삭제 될 수 있습니다.", preferredStyle: .alert) alert.addAction(UIAlertAction(title: "예", style: .default, handler: { action in self.showToast(message: "앱종료 실행") // 토스트 메세지 출력 UIControl().sendAction(#selector(URLS..