This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10.13.5 | 10.14 Beta (18A293u) | Diffs | |
---|---|---|---|
libswiftAVFoundation.dylib | libswiftAVFoundation.dylib | ||
libswiftAccelerate.dylib | libswiftAccelerate.dylib | ||
libswiftAppKit.dylib | libswiftAppKit.dylib | ||
libswiftCloudKit.dylib | libswiftCloudKit.dylib | ||
libswiftContacts.dylib | libswiftContacts.dylib | ||
libswiftCore.dylib | libswiftCore.dylib | ||
libswiftCoreAudio.dylib | libswiftCoreAudio.dylib | ||
libswiftCoreData.dylib | libswiftCoreData.dylib | ||
libswiftCoreFoundation.dylib | libswiftCoreFoundation.dylib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10.13.5 | 10.14 Beta (18A293u) | Diff | |
---|---|---|---|
ACDEClient.framework | ACDEClient.framework | ||
AOSAccounts.framework | AOSAccounts.framework | ||
AOSAccountsLite.framework | AOSAccountsLite.framework | ||
AOSKit.framework | AOSKit.framework | ||
AOSMigrate.framework | AOSMigrate.framework | ||
AOSUI.framework | AOSUI.framework | ||
APFS.framework | APFS.framework | ||
APTransport.framework | APTransport.framework | ||
AVConference.framework | AVConference.framework |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10.13.5 | 10.14 Beta (18A293u) | Diff | |
---|---|---|---|
AGL.framework | AGL.framework | ||
AVFoundation.framework | AVFoundation.framework | ||
AVKit.framework | AVKit.framework | ||
Accelerate.framework | Accelerate.framework | ||
Accounts.framework | Accounts.framework | ||
AdSupport.framework | Added | ||
AddressBook.framework | AddressBook.framework | ||
AppKit.framework | AppKit.framework | ||
AppKitScripting.framework | AppKitScripting.framework |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Properties | MetadataTags | |
---|---|---|
{ | ||
ColorModel = RGB; | ||
DPIHeight = 72; | ||
DPIWidth = 72; | ||
Depth = 8; | ||
Orientation = 6; | ||
PixelHeight = 3024; | ||
PixelWidth = 4032; | ||
ProfileName = "sRGB IEC61966-2.1"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<CGImageMetadataTag 0x600000838580> exif:SceneType = 1 | |
<CGImageMetadataTag 0x6000008384c0> exif:SubsecTimeDigitized = 084 | |
<CGImageMetadataTag 0x600000838920> exif:GPSDestBearingRef = T | |
<CGImageMetadataTag 0x6000008387a0> exif:GPSAltitudeRef = 0 | |
<CGImageMetadataTag 0x600000837ea0> xmp:CreatorTool = 11.1 | |
<CGImageMetadataTag 0x600000838180> exif:Flash = <CFBasicHash 0x600000c78c00 [0x105615bb0]>{type = mutable dict, count = 5, | |
entries => | |
0 : <CFString 0x1068b86b8 [0x105615bb0]>{contents = "Function"} = <CGImageMetadataTag 0x600000838240> exif:Function = False | |
1 : <CFString 0x1068b8658 [0x105615bb0]>{contents = "Fired"} = <CGImageMetadataTag 0x6000008381a0> exif:Fired = False | |
2 : <CFString 0x1068b8678 [0x105615bb0]>{contents = "Return"} = <CGImageMetadataTag 0x600000838200> exif:Return = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
ColorModel = RGB; | |
DPIHeight = 72; | |
DPIWidth = 72; | |
Depth = 8; | |
Orientation = 6; | |
PixelHeight = 3024; | |
PixelWidth = 4032; | |
ProfileName = "sRGB IEC61966-2.1"; | |
"{Exif}" = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)sortTest | |
{ | |
NSArray<NSString *> *array = @[@"英語", @"中国語", @"韓国語", @"ロシア語", @"ルーマニア語"]; | |
for (NSString *string in [array sortedArrayUsingSelector:@selector(compare:)]) { | |
NSLog(@"%@", string); | |
} | |
NSLog(@"\n"); | |
// ルーマニア語 | |
// ロシア語 | |
// 中国語 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@implementation MFMailComposeViewController (XXAppearance) | |
// called when UIViewControllerBasedStatusBarAppearance = YES | |
- (UIStatusBarStyle)preferredStatusBarStyle | |
{ | |
return UIStatusBarStyleLightContent; | |
} | |
// called when UIViewControllerBasedStatusBarAppearance = YES | |
- (UIViewController *)childViewControllerForStatusBarStyle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import UIKit; | |
@import Photos; | |
@interface ViewController : UIViewController | |
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <UIKit/UIKit.h> | |
#import <CoreData/CoreData.h> | |
@interface AppDelegate : UIResponder <UIApplicationDelegate> | |
@property (strong, nonatomic) UIWindow *window; | |
@property (readonly, strong) NSPersistentContainer *persistentContainer; | |
@property (nonatomic) NSURL *databaseURL; |