intel macである。
- 3.2.2 はインストールできる。
Xcode.appはできるXcode 15.2.appはできる
- 3.2.3 はインストールできない場合がある。
Xcode.appはできるXcode_15.2.appはできるXcode .appはできる
Xcode 15.appはできる
intel macである。
Xcode.app はできるXcode 15.2.app はできるXcode.app はできるXcode_15.2.app はできるXcode .app はできるXcode 15.app はできる| gregorian Saturday, March 14, 2020 at 12:55:29 AM Japan Standard Time | |
| buddhist Saturday, March 14, 2563 BE at 12:55:29 AM Japan Standard Time | |
| chinese Saturday, Second Month 21, 2020(geng-zi) at 12:55:29 AM Japan Standard Time | |
| coptic Saturday, Baramhat 5, 1736 ERA1 at 12:55:29 AM Japan Standard Time | |
| ethiopicAmeteMihret Saturday, Megabit 5, 2012 ERA1 at 12:55:29 AM Japan Standard Time | |
| ethiopicAmeteAlem Saturday, Megabit 5, 7512 ERA0 at 12:55:29 AM Japan Standard Time | |
| hebrew Saturday, 18 Adar 5780 at 12:55:29 AM Japan Standard Time | |
| iso8601 Saturday, March 14, 2020 at 12:55:29 AM Japan Standard Time | |
| indian Saturday, Phalguna 24, 1941 Saka at 12:55:29 AM Japan Standard Time | |
| islamic Saturday, Rajab 20, 1441 AH at 12:55:29 AM Japan Standard Time |
| for val in UnicodeScalar("a").value...UnicodeScalar("z").value { | |
| let x = String(UnicodeScalar(val)!) | |
| print(x) | |
| } |
| import Foundation | |
| Date.timeIntervalSinceReferenceDate | |
| Date.timeIntervalBetween1970AndReferenceDate | |
| Date().timeIntervalSince1970 | |
| Date().timeIntervalSinceReferenceDate | |
| Date().addingTimeInterval(-Date().timeIntervalSinceReferenceDate) | |
| 978307200 / 60 / 60 / 24 / 365 | |
| print(String(554378506, radix: 2)) |
| import XCTest | |
| class HeiseiTests: XCTestCase { | |
| func test平成じゃない() { | |
| let calendar = Calendar(identifier: .japanese) | |
| let component = DateComponents( | |
| calendar: calendar, | |
| timeZone: nil, | |
| era: 235, // 平成 | |
| year: 31, |
| 休日 | 期日 | 適用開始年 | 適用終了年 |
|---|---|---|---|
| 元日 | 1月1日 | 1948年7月20日 | - |
| 元始祭 | 1月3日 | 1873年10月14日 | 1948年7月20日 |
| 新年宴会 | 1月5日 | 1873年10月14日 | 1948年7月20日 |
| 成人の日 | 1月15日 | 1948年7月20日 | 2000年1月1日 |
| 成人の日 | 1月の第2月曜日 | 2000年1月1日 | - |
| 孝明天皇祭 | 1月30日 | 1873年10月14日 | 1912年 |
| 紀元節 | 2月11日 | 1873年10月14日 | 1948年7月20日 |
| struct MyStruct<T: Equatable>: Equatable { | |
| let x: T; | |
| } | |
| func ==<T>(x: MyStruct<T>, y: MyStruct<T>) -> Bool { | |
| return x.x == y.x | |
| } | |
| let s1 = MyStruct(x: 1) | |
| let s2 = MyStruct(x: 2) |
| let array = [1, 2, 3, 4, 5] | |
| for num in array.reverse() { | |
| print("num: \(num)"); | |
| } | |
| for (index, num) in array.enumerate().reverse() { | |
| print("num: \(num)"); | |
| print("inde: \(index)\n"); | |
| } |
| Pod::Spec.new do |s| | |
| s.name = "AMoAd" | |
| s.version = "3.9.7" | |
| s.summary = "AMoAdネイティブ広告(SDK for iOS)" | |
| s.homepage = "https://github.com/amoad/amoad-ios-sdk" | |
| s.ios.deployment_target = '7.0' | |
| s.license = { :type => 'o', :file => 'LICENSE' } | |
| s.author = { "amoad" => "[email protected]" } | |
| s.source = { | |
| :tag => "v3.9.7", |