일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- Swift flutterview
- 스위프트 앨범
- 안드로이드 숏컷
- 노티피케이션 익스텐션
- 스위프트 테이블 뷰 셀
- swift 문자
- Swift flutterviewcontroller
- native flutter view
- flutter 회전
- NotificationService Extension
- 푸시 데이터 저장
- 스위프트 카메라
- 스위프트 푸시
- 플러터 뷰 컨트롤러
- 앱 꺼졌을 때 푸시 데이터 저장
- flutter rotate
- FlutterView MethodChannel
- swift autolayout
- 안드로이드 FCM
- 안드로이드 에러
- 스위프트 웹뷰
- 스위프트 UserDefaults
- 스위프트
- Flutter UIKitView MethodChannel
- swift sms
- Flutter NativeView
- 안드로이드 바로가기
- 안드로이드 앨범
- silent push
- 앱 백그라운드 푸시 데이터 저장
- Today
- Total
목록iOS (기능) (89)
Things take time
[문자메시지 보내기] 코드는 간단하다. 1. Xcode 상의 import2. 소스 상의 import, 딜리게이트3. 코드 작성 [예제] if MFMessageComposeViewController.canSendText() { let recipients:[String] = ["번호"] let messageController = MFMessageComposeViewController() messageController.messageComposeDelegate = self messageController.recipients = recipients messageController.body = "텍스트" self.present(messageController, animated: true, completion: n..
[로직] 테이블 뷰나 스크롤 뷰가 있는 뷰에서 상하단으로 드래그할 때마다 발생되는 이벤트에 탭 바를 숨기거나 보일때 필요한 기능이다. [코드] @available(iOS 2.0, *) public func scrollViewWillBeginDragging(_ scrollView: UIScrollView){ if scrollView.panGestureRecognizer.translation(in: scrollView).y < 0{ print("y0") changeBar(hidden: false) } } 당연히 딜리게이트는 되어있다고 가정한다. (테이블 뷰 는 스크롤 뷰를 기본적으로 딜리게이트 되어있음) func changeBar(hidden:Bool){ guard let tabBar = self.tabBa..
[헤더] 기본적인 테이블 뷰는 테이블 뷰 셀로 이루어져있다. 근데 그 안에는 Header, Footer부분이 있는데.. 이 부분을 사용하게 되면 테이블 뷰 위 아래에 원하는 것을 넣을 수 있다. 기본적으로 헤더를 넣게 되면 고정이 되어 스크롤을 내려도 헤더는 내려오지 않는다. [헤더 고정 해제 방법] 고정 방법은 말 그대로 그냥 쓰면 되는 거고.. @available(iOS 2.0, *) public func scrollViewDidScroll(_ scrollView: UIScrollView){ // let scrollHeaderHeight = friendsTableView.sectionHeaderHeight let scrollHeaderHeight = friendsTableView.rowHeight i..
[Code] containerView = UIView(frame: self.view.frame) self.view.addSubview(containerView) //제약조건을 프로그래밍으로 할때는 뷰 자체적으로 수행하는 오토리사이징을 꺼야 함(이유 : 사용자가 지정한 오토레이아웃 조건과 충돌하여 제약조건 문제를 일으킴) containerView.translatesAutoresizingMaskIntoConstraints = false self.view.addConstraint(NSLayoutConstraint(item: containerView, attribute: .top, relatedBy: .equal, toItem: self.topLayoutGuide, attribute: .bottom, multi..