Programing Language/iOS(Swift)
-
-
-
-
iOS) http 허용하기 info.plist 수정Programing Language/iOS(Swift) 2020. 3. 11. 14:35
혹시나 url 주소가 "http://~" 로 시작되나요? 그렇다면 다음과 같이 수정을 해줘야합니다. project폴더에서 info.plist 파일을 show in finder 한다음 info.plist파일을 텍스트 편집기로 열어줍니다. 이후 다음의 코드를 추가해줍니다. NSAppTransportSecurity NSAllowsArbitraryLoads 저장 후 다시 빌드하면 정상적으로 작동 하는걸 볼 수 있습니다.
-
iOS) UIButton에 이미지와 텍스트 넣기[펌]Programing Language/iOS(Swift) 2020. 3. 9. 17:59
https://stackoverflow.com/a/39013315 How do I put the image on the right side of the text in a UIButton? I don't want to use a subview if I can avoid it. I want a UIButton with a background image, text, and an image in it. Right now, when I do that, the image is on the left side of the text. The backg... stackoverflow.com