Mobile, Application

    [Xcode 15] Xcode 15에서 추가한 시뮬레이터가 보이지 않는 현상

    Environments - M1 Mac pro 14 - MacOS ver: 14.1.1 (Sonoma) - Xcode Version 15.0.1 문제 상황 MacOS 및 Xcode 업데이트 이후, 기존에 추가해 두었던 시뮬레이터들이 싹 날아가서 다시 새로 추가하였다. iPhone 14 시뮬레이터를 추가했는데도 Xcode에서 빌드할 때 보이지 않는 문제. 해결 시뮬레이터 목록 하단의, Manage Run Destinations에 들어간다. 추가한 시뮬레이터가 좌측에서 보일 텐데, 그 시뮬레이터 창에서 Show run destination을 Automatic에서 Always로 변경해주면 해결.

    [iOS, Swift] NotificationCenter 간단 요약

    개요 객체는 addObserver() 를 통해 notification center에 notification을 수신할 수 있도록 등록한다. 등록하면 객체는 observer가 되는데, 이때 어떤 notification을 수신할 지 명시해주어야 하며, 따라서 여러 가지의 notification을 수신하려면 addObserver() 를 여러 번 호출해야 한다. 앱에는 기본적으로 default notification center가 존재하며(싱글톤), 특정 notification을 관리(발행, 수신)하기 위해 새로운 notification center를 생성할 수도 있다. notification center를 통해, 앱의 한 쪽에서 다른 쪽으로 데이터를 전달할 수 있고, 객체들 간의 상호작용을 구현할 수 있다. N..

    [Swift] URLSession 간단 요약

    URLSession이란? An object that coordinates a group of related, network data transfer tasks. API 통신을 하기 위한 클래스. 데이터를 업로드 / 다운로드하는 데에 사용 앱이 실행중이지 않을 때, 백그라운드에서도 통신이 가능. 하나의 URLSession에서 여러 개의 URLSessionTask 인스턴스를 만들 수 있으며, URLSessionTask 각각은 데이터를 fetch하거나, 업로드하거나, 파일을 다운로드하는 역할을 할 수 있다. URLSession의 Request와 Response URLSession은 다른 HTTP 통신과 마찬가지로 Request와 Response를 기본 구조로 가진다. Request URL 객체를 통해 직접 통..

    [Swift(iOS, WatchOS), CreateML, CoreML] iOS & WatchOS 앱에 ML 적용해보기 (1) - 모델 생성 및 학습하기 (Activity Classification)

    iOS & WatchOS 앱에 ML 적용해보기 시리즈iOS & WatchOS 앱에 ML 적용해보기 (1) - 모델 생성 및 학습하기 (Activity Classification) 본론으로 들어가기 전에..이 시리즈는 SwiftUI를 이용한 iOS 앱과, 그에 연동되는 Apple Watch 앱을 이용하고,Apple Watch에서의 CoreMotion 프레임워크를 이용해 가속도 센서의 값들을 불러와 데이터셋으로 만든 이후,Create ML을 이용해 모델을 생성하여 상기한 데이터셋을 기반으로 학습시킵니다.이후 학습시킨 모델을 CoreML 프레임워크로 불러와, 애플 워치의 가속도 센서 값을 이용해 실시간으로 유저가 허리를 굽히고 팔을 내렸는지(쓰레기를 줍는 행동을 하였는지) ..

    [Flutter] FAILURE: Build failed with an exception. A problem occurred evaluating project ':app'. > path may not be null or empty string. path='null' 오류

    Environments M1 Mac pro 14 VSCode Flutter 3.3.8 Galaxy A52 (SM A525F) Error Message FAILURE: Build failed with an exception. * Where: Build file '/Users/jaewonlee/Desktop/milkflutter/android/app/build.gradle' line: 69 * What went wrong: A problem occurred evaluating project ':app'. > path may not be null or empty string. path='null' * Try: > Run with --stacktrace option t..

    [Flutter] BottomNavBar Icon에 알림 뱃지(Notification Badge) 달기

    BottomNavigationBar(CupertinoTabBar)에서 아이콘에 알림 뱃지 달아야 되는데, 은근 그냥 간단한 작업은 아니였어서 기록. BottomNavigationBar 아니여도, 알림 뱃지(Notification Badge)를 달 때 따라해도 될 것 같고, BottomNavigationBarItem 이용하는거니까 Material Style의 BottomNavigationBar든, Cupertino Style의 CupertinoTabBar든 상관 없이 참고해도 괜찮을 것 같다. 시작(기본 코드) 우선 기본적으로 이렇게 생긴 Navigation Bar에서 시작해 보겠다. 코드는 아래 참고. class Homescreen extends StatefulWidget { @override _Home..

    [Flutter] Warning: CocoaPods not installed. Skipping pod install. 오류

    Error Message Warning: CocoaPods not installed. Skipping pod install. CocoaPods is used to retrieve the iOS and macOS platform side's plugin code that responds to your plugin usage on the Dart side. Without CocoaPods, plugins will not work on iOS or macOS. For more info, see https://flutter.dev/platform-plugins To install see https://guides.cocoapods.org/using/getting-started.html#installation f..

    [Google Maps API, Flutter] Google Maps(Places) API에서 response 언어 한국어로 설정하기

    http (REST API) 관련이기 때문에 다른 프로젝트에서도 동일하게 적용 가능합니다. Flutter 프로젝트를 진행하다, Google Places API를 이용해 텍스트로 장소를 검색하는 기능을 만드는데 response JSON에서 장소 이름이 영어로 나와서 화면에 띄워주기엔 좀 불편했다. 그래서 한국어로 response를 받을 수 있는 방법이 있는 지 찾아보았다. 우선, 기존에는 검색어 텍스트를 이용해 get요청으로 장소 정보를 받아오고 있었다. String url = "https://maps.googleapis.com/maps/api/place/textsearch/json?query="; String key = dotenv.env['GOOGLE_PLACES_API_2'] ?? ""..