Total(372)
-
MAC OS에서 자바 제어판이 열리지 않을 때
자바 제어판이 제대로 실행 되지 않을 때가 있다.Java 제어판 다시 열기를 눌러도 무반응이다.이건 버그라고 하는데.. 아래와 같이 하면 해결된다.1. 설정에서 언어 및 지역 선택 2. 지역을 다른 나라로 임시 지정한다. 3. 다시 자바를 실행시키면 제어판이 나온다.4. 여기서 다시 언어 및 지역에서 대한민국으로 다시 수정을 하면 제대로 실행이 된다.
2017.02.27 -
swift3.0 설정으로 가기
http://stackoverflow.com/questions/28152526/how-do-i-open-phone-settings-when-a-button-is-clicked-ios prefs:root=General&path=Aboutprefs:root=General&path=ACCESSIBILITYprefs:root=AIRPLANE_MODEprefs:root=General&path=AUTOLOCKprefs:root=General&path=USAGE/CELLULAR_USAGEprefs:root=Brightnessprefs:root=Bluetoothprefs:root=General&path=DATE_AND_TIMEprefs:root=FACETIMEprefs:root=Generalprefs:root=Gene..
2017.02.17 -
alertMessage 왼쪽 정렬
- 변경 전let alertController = UIAlertController(title: "삭제 하시겠습니까?", message: "사용자: \(username)"+"\n"+"휴대폰: \(phone)"+"\n"+"네이트온: \(nateon)", preferredStyle: .alert) let submit = UIAlertAction(title: "Submit", style: UIAlertActionStyle.default, handler: { (paramAction:UIAlertAction) in if let status = self.ArrayUserName[indexPath.row].authstatus, let auth = self.ArrayUserName[indexPath.row].authva..
2017.02.15 -
맥 터미널에서 wget 설치
$ brew install wget --with-libressl $ wget -help
2017.02.09 -
3D 터치 구현
아래 유튜브 동영상을 보고 그대로 따라한 것을 내 나름대로 정리해 보았다.https://www.youtube.com/watch?v=NO9E5KxixOw 위 그림으로 보자면,테이블뷰 메인화면을 만들고 해당 셀을 클릭 했을 경우, 일반적으로 AddStuffViewController로 넘어가게 된다.여기서 해당 셀을 클릭하지 않고, 강하게 누르고 있을 경우, 즉 3D터치를 하였을 경우 PreviewViewController로 보여지게 끔 하려는 것이 목적이다. 아래 소스의 색이 칠해져 있는 것은 3d터치와 연관된 소스이니, 이부분만 참고하면 될 듯 싶다. - MasterViewController.swift import UIKit class MasterViewController: UIViewController,..
2017.02.02 -
Notification - FCM 설정(3) : 소스 및 테스트
3. 소스 확인 및 테스트 - 이제 거의 다 왔다. - firebase 에 나와 있는 소스는 swift3과 다른 부분이 있어서, 변경된 부분만 stackoverflow에서 참고하여 수정하였다.(1) 앱에서 Firebase 초기화(2) 소스(3) 테스트 (1) 앱에서 Firebase 초기화 - AppDelegate.swift 파일에 추가 (2) 소스 - AppDelegate.swift import UIKit import Firebase import UserNotifications @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate { var window: UIWindo..
2017.02.02