본문 바로가기

개발언어23

[Xamarin] iOS App 등록하기 1. App ID 등록하기 https://kjun.kr/947?category=761753 [Xamarin] iOS App 등록하기 1 - App ID 등록 아래 내용을 진행하기전 아래 링크로 인증서(Certificate) 를 만들어야 합니다. https://docs.microsoft.com/ko-kr/xamarin/ios/deploy-test/app-distribution/app-store-distribution/?tabs=windows iOS 에 App.. kjun.kr 2. 프로비전 프로필 만들기 https://kjun.kr/948 [Xamarin] iOS App 등록하기 2 - 프로비전 프로필 만들기 프로젝트에서 앱을 배포버전으로 빌드하기 위해선 프로비전 프로필을 만들어야합니다. https://d.. 2020. 3. 6.
[Xamarin] iOS Url API 호출 시 오류(System.Net.WebException, NSErrorException) Xamarin.iOS 개발 시 Web API를 이용할 때 아래와 같은 오류가 발생 시 조치 방법 더보기 System.Net.WebException Connection failed: Error Domain=NSURLErrorDomain Code=-1022 "The resource could not be loaded because the App Transport Security policy requires the use of a secure connection." UserInfo={NSUnderlyingError=0x7fada0f31880 {Error Domain=kCFErrorDomainCFNetwork Code=-1022 "(null)"}, NSErrorFailingURLStringKey=MyServic.. 2020. 3. 5.
C #에서 싱글 톤 패턴 구현 C# 싱글 톤 패턴 유형별 설명이 잘되어 있는 사이트를 링크한다. https://csharpindepth.com/articles/singleton Implementing the Singleton Pattern in C# Implementing the Singleton Pattern in C# Table of contents (for linking purposes...) The singleton pattern is one of the best-known patterns in software engineering. Essentially, a singleton is a class which only allows a single instance of itself to be cr csharpindepth.com 2020. 1. 17.
Python Transmission RPC 문서 https://pythonhosted.org/transmissionrpc/index.html Transmission RPC — Transmission RPC 0.11 documentation A note about debugging information If you ever need to see what’s going on inside transmissionrpc, you can change the logging level of transmissionrpc. This is done with these easy steps >>> import logging >>> logging.getLogger('transmissionrpc').setLevel( pythonhosted.org 2019. 12. 15.