One file for each domain, both www.example.com and example.com need separate files:
{
"applinks": {
"apps": [],
"details": {
"9JA89QQLNQ.com.apple.wwdc": {
import RealmSwift | |
internal struct RealmService { | |
private static var realm: Realm? { | |
do { | |
return try Realm() | |
} catch let error as NSError { | |
print(error) | |
return nil |
import RealmSwift | |
extension Results { | |
func toArray() -> [T] { | |
return self.map{ $0 } | |
} | |
} |
One file for each domain, both www.example.com and example.com need separate files:
{
"applinks": {
"apps": [],
"details": {
"9JA89QQLNQ.com.apple.wwdc": {
let styles: [UIFont.TextStyle] = [ | |
// iOS 17 | |
.extraLargeTitle, .extraLargeTitle2, | |
// iOS 11 | |
.largeTitle, | |
// iOS 9 | |
.title1, .title2, .title3, .callout, | |
// iOS 7 | |
.headline, .subheadline, .body, .footnote, .caption1, .caption2, | |
] |
// | |
// ZSWFileTester.m | |
// Image Size Test | |
// | |
// Created by Zachary West on 3/4/14. | |
// Copyright (c) 2014 Zachary West. All rights reserved. | |
// | |
#import "ZSWFileTester.h" |