목록Apple (26)
NewGen
제목 : 3D Topological Quantum Computing 저자 및 관련 : Torsten Asselmeyer-Maluga German Aerospace Center (DLR), Rosa-Luxemburg-Str. 2 10178 Berlin, Germany torsten.asselmeyer-maluga@dlr.de 페이지 1 3D 위상 양자 컴퓨팅 토르스텐 아셀마이어-말루가 독일 항공 우주 센터(DLR), Rosa-Luxemburg-Str. 2 10178 베를린, 독일 torsten.asselmeyer-maluga@dlr.de 2021년 7월 20일 요약 이 백서에서 우리는 양자화를 위해 3D 토폴로지를 사용하기 위한 몇 가지 아이디어를 제시할 것입니다. tum computing 이전 논문에서 ..
제목 : Quantum computations (course of lectures) 저자 및 관련 : Yuri I. Ozhigov Moscow State University of M.V.Lomonosov, Faculty of Computational Mathematics and Cebernetics, Moscow center of fundamental and applied mathematics, Institute of physics and technology of K.A.Valiev (RAS), e-mail: ozhigov@cs.msu.ru This is just translated to korean by google translator. Original article is attached. 페이지 1 ..
* get top Viewcontroller guard let window = UIApplication.shared.keyWindow, let rootViewController = window.rootViewController else { print("get error") return } var topController = rootViewController while let newTopController = topController.presentedViewController { topController = newTopController } print("TOP=\(topController)") 의외로 많이 쓰임. 프로토콜로 전달하기 애매할때는, 탑 뷰컨트롤러 찾아서 바로 코드 실행해야 할때.. 백그라운드서..
1. connect iphone to Mac via USB. 2. run Xcode 3. Select Window -> Devide and Simulators. 4. Check "Conect via network" 5. unplug usb cable and restart Xcode. 6. Select Window -> Devide and Simulators. and find your iphone and right click on yours. 7. select "connect via IP Address" 8. enter your iphone ip address. 9. Run and debugging on Xcode. It will download via wifi and can do debugging.
이거는 h-Index 개념을 이해하는데 시간이 걸렸슴.. 내 머리가 일케 안돌아가나 하는걸 느꼈슴. 결국엔 매우 간단하다는걸 깨달음.. --; 주어진 배열을 내림차순 정렬시키고, 인덱스별로 인덱스 값과 배열값을 비교하다가 배열값이 인덱스번호 보다 작거나 같으면 해당 인덱스를 리턴하면 되는거였슴. 배열개수동안 루프 돌다가 주어진 위 조건에 만족을 못하는경우는 그냥, 배열개수를 리턴하면 되는거였슴. 근데 문제 설명이 ... ㅋ 제출코드는 아래와 같고... 소스파일 첨부는 아래에..
1. 아무거나 사용자 닙 하나 만듬. / Create custom uiview.xib 2. MyView.swift 를 아래와 같이 만들어줌. / Create MyView.swift and Type code below.....and focus on nib file name. I had a wrong xib name... I wanted "MyView.xib", but wrote "MtView.xib".. So, I faced crash app..... import UIKit class MyView: UIView { @IBOutlet var main_view: UIView! @IBOutlet weak var text_label: UILabel! override init(frame: CGRect) { supe..
중단에서 응용 프로그램을 방지 할 수 있습니다. 관련된 API는 매우 작지만 여전히주의해야 할 사항이 많이 있습니다. 이름 백그라운드 작업 은 다소 부적절합니다. 특히, beginBackgroundTask(expirationHandler:)실제로 백그라운드 작업의 모든 종류의를 시작하지 않고, 그 시스템 알려주 는 앱이 백그라운드에있는 경우에도 계속하려면 몇 가지 진행중인 작업을 시작합니다. 해당 작업을 만들고 관리하려면 코드를 작성해야합니다. 따라서 백그라운드 작업 API를 "Do n't suspend me"주장을 제기하는 것으로 생각하는 것이 가장 좋습니다. 시작하는 모든 백그라운드 작업을 종료해야합니다. 그렇게하지 않으면 워치 독에 의해 앱이 종료됩니다. 이러한 이유로 시작하는 각 백그라운드 작업에..
앱 이 동작을 하면서 데이터 송수신, 트랜잭션 등의 작업이 이루어지는 중에 전화오거나, 그냥 사용자가 슬립버튼 눌러버린경우 데이터 깨지거나 앱 죽는 경우 방지를 위해서.... 고려해봄 기본적 처리방법. 1. capabilities 설정에 백그라운드모드 넣고 저래 두개 켜줌. 2.info.plist에 이런거 추가 해주고.... 3. 처리를 원하는 곳에 func beginBackgroundUpdateTask() -> UIBackgroundTaskIdentifier { return UIApplication.shared.beginBackgroundTask(expirationHandler: ({})) } func endBackgroundUpdateTask(taskID: UIBackgroundTaskIdentifi..