Skip to content

Commit 3b1a441

Browse files
committedSep 26, 2024
优化Screen, 增加不同UIScreen支持, 增加iPhone 16系列支持.
1 parent 8891112 commit 3b1a441

13 files changed

+636
-427
lines changed
 

‎Demo/Demo.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@
411411
CODE_SIGN_STYLE = Automatic;
412412
DEVELOPMENT_TEAM = 8G74YECJ4Z;
413413
INFOPLIST_FILE = Demo/Info.plist;
414-
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
414+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
415415
LD_RUNPATH_SEARCH_PATHS = (
416416
"$(inherited)",
417417
"@executable_path/Frameworks",
@@ -431,7 +431,7 @@
431431
CODE_SIGN_STYLE = Automatic;
432432
DEVELOPMENT_TEAM = 8G74YECJ4Z;
433433
INFOPLIST_FILE = Demo/Info.plist;
434-
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
434+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
435435
LD_RUNPATH_SEARCH_PATHS = (
436436
"$(inherited)",
437437
"@executable_path/Frameworks",

‎Demo/Demo/ViewController.swift

+24-18
Original file line numberDiff line numberDiff line change
@@ -15,33 +15,39 @@ class ViewController: UITableViewController {
1515
super.viewDidLoad()
1616
// Do any additional setup after loading the view, typically from a nib.
1717

18-
print(
19-
"this is " +
20-
"default".screen
21-
.width(._320, is: "宽度 320")
22-
.width(._375, is: "宽度 375")
23-
.height(._844, is: "高度 844")
24-
.height(._812, is: "高度 812")
25-
.inch(._4_7, is: "4.7 英寸")
26-
.inch(._5_8, is: "5.8 英寸")
27-
.inch(._6_5, is: "6.5 英寸")
28-
.level(.compact, is: "屏幕级别 紧凑屏")
29-
.level(.regular, is: "屏幕级别 常规屏")
30-
.level(.full, is: "屏幕级别 全面屏")
31-
.value
18+
print("this is " + "default".screen
19+
.width(equalTo: 375, is: "宽度 等于 375")
20+
.width(lessThan: 414, is: "宽度 小于 414")
21+
.width(greaterThan: 414, is: "宽度 大于 414")
22+
.height(equalTo: 700, is: "高度 等于 375")
23+
.height(lessThan: 844, is: "高度 小于 844")
24+
.height(greaterThan: 844, is: "高度 大于 844")
25+
.inch(._4_7, is: "4.7 英寸")
26+
.inch(._5_8, is: "5.8 英寸")
27+
.inch(._6_5, is: "6.5 英寸")
28+
.level(.compact, is: "屏幕级别 紧凑屏 (4:3)")
29+
.level(.regular, is: "屏幕级别 常规屏 (16:9)")
30+
.level(.full, is: "屏幕级别 全面屏 (19.5:9)")
31+
.value
3232
)
3333

34+
// Range用法: 默认值0, 当宽度小于等于375 返回1
35+
print(0.screen.width(...375, is: 1).value)
36+
// Range用法: 默认值0, 当宽度为375至414范围时 返回1
37+
print(0.screen.width(375...414, is: 1).value)
38+
// Range用法: 默认值0, 当屏幕小于5.5英寸时 返回1
39+
print(0.screen.inch(..<5.5, is: 1).value)
3440

3541
// 默认值 0 在3.5英寸的屏幕时返回1, 在4.0英寸的屏幕时返回2
3642
print(0.screen.inch(._3_5, is: 1).inch(._4_0, is: 2).value)
3743
// 默认值 0 在全面屏时返回1, 在6.1英寸的屏幕时返回2
3844
print(0.screen.level(.full, is: 1).inch(._6_1, is: 2).value)
3945
// 默认值 100 在宽度为375级别的屏幕时 正常返回120, 如果为缩放模式则返回110
40-
print(100.screen.width(._375, is: 120, zoomed: 110).value)
46+
print(100.screen.width(equalTo: 375, is: 120, zoomed: 110).value)
4147

42-
print("当前屏幕级别: \(UIAdapter.Screen.Level.current)")
43-
print("是否为全面屏: \(UIAdapter.Screen.isFull)")
44-
print("是否为缩放模式: \(UIAdapter.Screen.isZoomedMode)")
48+
print("当前屏幕级别: \(UIAdapter.Screen.main.level)")
49+
print("是否为全面屏: \(UIAdapter.Screen.main.level.isFull)")
50+
print("是否为缩放模式: \(UIAdapter.Screen.main.isZoomedMode)")
4551
}
4652

4753
override var preferredStatusBarStyle: UIStatusBarStyle {

‎Demo/Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
platform :ios, '10.0'
1+
platform :ios, '15.6'
22
inhibit_all_warnings!
33

44
target 'Demo' do

‎Demo/Podfile.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PODS:
2-
- UIAdapter (1.3.0):
3-
- UIAdapter/Privacy (= 1.3.0)
4-
- UIAdapter/Privacy (1.3.0)
2+
- UIAdapter (1.4.0):
3+
- UIAdapter/Privacy (= 1.4.0)
4+
- UIAdapter/Privacy (1.4.0)
55

66
DEPENDENCIES:
77
- UIAdapter (from `../`)
@@ -11,8 +11,8 @@ EXTERNAL SOURCES:
1111
:path: "../"
1212

1313
SPEC CHECKSUMS:
14-
UIAdapter: 2c0c81c68b308e3ce8b4363d4f66b0ced8c1812f
14+
UIAdapter: 81dd1efbab6c0d092ac0d02e12a3c6b84e3c3c99
1515

16-
PODFILE CHECKSUM: 0793a3778780a57cf83a43faa9039eedb0b67f7a
16+
PODFILE CHECKSUM: 6c30ea2512eacb7800929df401f020c67f5b94ec
1717

1818
COCOAPODS: 1.15.2

‎Demo/Pods/Local Podspecs/UIAdapter.podspec.json

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Demo/Pods/Manifest.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Demo/Pods/Pods.xcodeproj/project.pbxproj

+211-210
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Demo/Pods/Target Support Files/UIAdapter/ResourceBundle-UIAdapter-UIAdapter-Info.plist

+24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Demo/Pods/Target Support Files/UIAdapter/UIAdapter-Info.plist

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎README.md

+15-14
Original file line numberDiff line numberDiff line change
@@ -133,24 +133,25 @@ label.numberOfLines = 0.screen.inch(._3_5, is: 1).inch(._4_0, is: 2).value
133133
```swift
134134
// default other screen numberOfLines = 0
135135
// width 320 screen numberOfLines = 1
136-
// width 375 inches screen numberOfLines = 2
137-
label.numberOfLines = 0.screen.width(._320, is: 1).width(._375, is: 2).value
136+
// width 375 screen numberOfLines = 2
137+
label.numberOfLines = 0.screen.width(equalTo: 375, is: 1).width(equalTo: 375, is: 2).value
138138
```
139139

140140

141141
```swift
142-
print("this is " +
143-
"default".screen
144-
.width(._320, is: "width 320")
145-
.width(._375, is: "width 375")
146-
.height(._844, is: "height 844")
147-
.height(._812, is: "height 812")
148-
.inch(._4_7, is: "4.7 inches")
149-
.inch(._5_8, is: "5.8 inches")
150-
.inch(._6_5, is: "6.5 inches")
151-
.level(.compact, is: "screen 3: 2")
152-
.level(.regular, is: "screen 16: 9")
153-
.level(.full, is: "screen 19.5: 9")
142+
print("this is " + "default".screen
143+
.width(equalTo: 375, is: "width equal to 375")
144+
.width(lessThan: 414, is: "width less than 414")
145+
.width(greaterThan: 414, is: "width greater than 414")
146+
.height(equalTo: 700, is: "height equal to 375")
147+
.height(lessThan: 844, is: "height less than 844")
148+
.height(greaterThan: 844, is: "height greater than 844")
149+
.inch(._4_7, is: "4.7-inch")
150+
.inch(._5_8, is: "5.8-inch")
151+
.inch(._6_5, is: "6.5-inch")
152+
.level(.compact, is: "screen (4:3)")
153+
.level(.regular, is: "screen (16:9)")
154+
.level(.full, is: "screen (19.5:9)")
154155
.value
155156
)
156157
```

‎README_CN.md

+12-11
Original file line numberDiff line numberDiff line change
@@ -130,24 +130,25 @@ label.numberOfLines = 0.screen.inch(._3_5, is: 1).inch(._4_0, is: 2).value
130130
```swift
131131
// default other screen numberOfLines = 0
132132
// width 320 screen numberOfLines = 1
133-
// width 375 inches screen numberOfLines = 2
134-
label.numberOfLines = 0.screen.width(._320, is: 1).width(._375, is: 2).value
133+
// width 375 screen numberOfLines = 2
134+
label.numberOfLines = 0.screen.width(equalTo: 320, is: 1).width(equalTo: 375, is: 2).value
135135
```
136136

137137

138138
```swift
139-
print("this is " +
140-
"default".screen
141-
.width(._320, is: "宽度 320")
142-
.width(._375, is: "宽度 375")
143-
.height(._844, is: "高度 844")
144-
.height(._812, is: "高度 812")
139+
print("this is " + "default".screen
140+
.width(equalTo: 375, is: "宽度 等于 375")
141+
.width(lessThan: 414, is: "宽度 小于 414")
142+
.width(greaterThan: 414, is: "宽度 大于 414")
143+
.height(equalTo: 700, is: "高度 等于 375")
144+
.height(lessThan: 844, is: "高度 小于 844")
145+
.height(greaterThan: 844, is: "高度 大于 844")
145146
.inch(._4_7, is: "4.7 英寸")
146147
.inch(._5_8, is: "5.8 英寸")
147148
.inch(._6_5, is: "6.5 英寸")
148-
.level(.compact, is: "屏幕级别 紧凑屏")
149-
.level(.regular, is: "屏幕级别 常规屏")
150-
.level(.full, is: "屏幕级别 全面屏")
149+
.level(.compact, is: "屏幕级别 紧凑屏 (4:3)")
150+
.level(.regular, is: "屏幕级别 常规屏 (16:9)")
151+
.level(.full, is: "屏幕级别 全面屏 (19.5:9)")
151152
.value
152153
)
153154
```

‎Sources/Screen/UIAdapter.Screen.swift

+329-153
Large diffs are not rendered by default.

‎UIAdapter.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "UIAdapter"
4-
s.version = "1.3.1"
4+
s.version = "1.4.0"
55
s.summary = "iOS屏幕适配工具"
66

77
s.homepage = "https://github.com/lixiang1994/UIAdapter"
@@ -18,7 +18,7 @@ s.source_files = "Sources/**/*.swift"
1818

1919
s.requires_arc = true
2020

21-
s.swift_version = '5.3'
21+
s.swift_version = '5.5'
2222

2323
s.cocoapods_version = '>= 1.4.0'
2424

0 commit comments

Comments
 (0)
Please sign in to comment.