250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- iOS 개발자
- html5
- iPhone
- button
- 풀스택
- php
- css3
- 비전공 개발자
- react
- IOS
- 자바스크립트
- keyframes
- 개발자
- hover
- image
- 비전공자
- CSS
- jQuery
- 백엔드
- HTML
- effect
- Animation
- ipad
- SWIFT
- MAC
- 애니메이션
- xcode
- 프론트엔드
- javascript
- front-end
Archives
- Today
- Total
목록mac os (2)
비전공자 개발일기

1. Xcode에서 Simulator 또는 USB로 연결한 실제기기를 Cmd + R(빌드) 2. Safari Open 후 개발자용 메뉴 선택 개발자용 메뉴가 없을 경우 1. Mac Safari Setting 2. iPhone Safari Setting 3. 해당 웹페에지 클릭 4. 웹 속성 확인
SWIFT
2023. 3. 9. 16:28
WKWebView URL Query & Header Setting
let url = "your URL" var components = URLComponents(string: url)! components.queryItems = URLQueryItem(name: "name", value: value.trimmingCharacters(in: .whitespaces)) components.queryItems = [URLQueryItem(name: "name1", value: value.trimmingCharacters(in: .whitespaces)), URLQueryItem(name: "name2", value: value.trimmingCharacters(in: .whitespaces))] var request = URLRequest(url: components.url!..
SWIFT
2023. 3. 7. 20:56