일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- WebAuthn
- 안드로이드
- git
- SSL
- Xcode
- albumbook
- OTP
- css
- SwiftUI
- openssl
- 인증
- 애플
- otpkey
- MFA
- Nodejs
- MSYS2
- SSH
- fido
- 앱리소스
- kmip
- OSX
- MYSQL
- Android
- 앱스토어
- 2FA
- apple
- 앨범북
- SWIFT
- FIDO2
- appres
- Today
- Total
목록소스 팁/Objective C, Swift, iOS, macOS (50)
인디노트
今回の概要アプリ上にパーセンテージを表示する際、一番簡単なのは、UILabel を使って数値を表示する方法でしょう。ただ、もっとカッコよく、分かりやすく表示したいとなると、やはりグラフ表示となるのではないでしょうか。そこで、今回ご紹介するのは、このような円弧グラフを簡単に実現する MBCircularProgressBar です。イスラエルの Mati Bot さんが作成されました。この OSS を Xcode プロジェクトに組み込み、円形プログレスバーを表示し、さらにプロパティを変更して様々なビジュアル表現をするところまでご紹介します。プロジェクト作成 と pod installまずは、Single View Application テンプレートを使ってプロジェクトを作成します。次に、プロジェクトフォルダ上に Podfile を作成します。12use_frameworks!pod "..
이미지?12345678910111213UIImage *image = [info objectForKey:UIImagePickerControllerOriginalImage];// 이미지를 카메라 롤에 저장UIImageWriteToSavedPhotosAlbum(image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil); // 저장한 이후에 실행 될 메소드- (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo { if (error) { NSLog(@"error: %@", [error localizedDescr..
좋아, 문제를 설명했는데 가능한 해결책은 다음과 같다.@implementation MyWindowController volatile BOOL pageStillLoading; - (void) runInBackground:(id)arg { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; // Simmulate web page loading sleep(5); // This will not wake up the runloop on main thread! pageStillLoading = NO; // Wake up the main thread from the runloop [self performSelectorOnMainThread:@selector(w..
Data ClassXCode KeyRaw Info.plist KeyApple MusicPrivacy - Media Library Usage DescriptionNSAppleMusicUsageDescriptionBluetoothPrivacy - Bluetooth Peripheral Usage DescriptionNSBluetoothPeripheralUsageDescriptionCalendarPrivacy - Calendars Usage DescriptionNSCalendarsUsageDescriptionCameraPrivacy - Camera Usage DescriptionNSCameraUsageDescriptionContactsPrivacy - Contacts Usage DescriptionNSConta..
PHFetchOptionsA set of options that affect the filtering, sorting, and management of results that Photos returns when you fetch asset or collection objects.SDKsiOS 8.0+macOS 10.13+tvOS 10.0+FrameworkPhotosOn This PageOverviewTopicsRelationshipsSee AlsoOverviewUsing class methods on the PHAsset, PHCollection, PHAssetCollection, and PHCollectionList classes to fetch assets or collections produces ..
WWDC2016에서 iOS10과 함께 Notification Service Extension, Notification Content Extension이 소개되었습니다. 아이폰을 사용하시는 분께서는 이게 뭔지 잘 아시리라 생각됩니다.메세지 앱에 적용된 Extension Service Extension, Content Extension은 어떻게 다른 것인가?Service Extension적용하여 미디어 노출시키기Content Extension적용하여 푸쉬화면 커스터마이징하기Content Extension적용시 발생하는 몇 가지 문제점서버에서 해주어야 할일느낀 점1. Service Extension, Content Extension은 어떻게 다른 것인가? #Service Extension은 페이로드를 가로채 ..
This was fixed by adding $(inherited) in the Build Settings -> Search for LIBRARY_SEARCH_PATHS.This is understandable, since when updating your pod file for the latest versions of libraries which your project depends on, the debug output tells you where you need to add all the $(inherited) flags: LIBRARY_SEARCH_PATHS OTHER_LD_FLAGS GCC_PREPROCESSOR_DEFINITIONS
Photos Framework 정리Framework PhotosiCloud Photo Library 및 Live Photo 및 Photos 앱에 의해 관리되는 image 및 video asset을 가지고 작업합니다. 풀 크기의 asset 또는 thumbnail 이미지를 비동기적으로 가져오거나 cache 처리하며, 내용을 수정하고, 수정된 내용을 여러 장치에 동기화 합니다.개요iOS 및 macOS에서, Photos framework는 Photos앱을 위한 사진 편집 확장 기능을 지원하는 class를 제공합니다. iOS 및 tvOS에서, Photos framework는 Photos앱 및 iCloud Photo Library에서 관리하는 photo 및 video asset에 직접 액세스 할 수 있습니다. 이 ..
iOS Simulator is an integral part of any iOS development process. We just can’t ignore it. New Simulator from Xcode 9 brings a lot of useful tricks, which could make you even more productive. Finally, Apple recalled they have Simulator out there! Comparing to previous modest updates, this one seems like a big deal.So let’s break this down and list all features I found in new iOS simulator (some ..
Photos Framework 정리출처 : https://medium.com/@audrl1010/photos-framework-a92c92ff3c74Framework PhotosiCloud Photo Library 및 Live Photo 및 Photos 앱에 의해 관리되는 image 및 video asset을 가지고 작업합니다. 풀 크기의 asset 또는 thumbnail 이미지를 비동기적으로 가져오거나 cache 처리하며, 내용을 수정하고, 수정된 내용을 여러 장치에 동기화 합니다.개요iOS 및 macOS에서, Photos framework는 Photos앱을 위한 사진 편집 확장 기능을 지원하는 class를 제공합니다. iOS 및 tvOS에서, Photos framework는 Photos앱 및 iClo..