-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
88b1e54
commit 18924a3
Showing
13 changed files
with
1,611 additions
and
2 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>IDEDidComputeMac32BitWarning</key> | ||
<true/> | ||
</dict> | ||
</plist> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// swift-tools-version:5.5 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "UIAdapter", | ||
platforms: [.iOS(.v9)], | ||
products: [ | ||
// Products define the executables and libraries a package produces, and make them visible to other packages. | ||
.library( | ||
name: "UIAdapter", | ||
targets: ["UIAdapter"]), | ||
], | ||
dependencies: [ | ||
// Dependencies declare other packages that this package depends on. | ||
// .package(url: /* package url */, from: "1.0.0"), | ||
], | ||
targets: [ | ||
// Targets are the basic building blocks of a package. A target can define a module or a test suite. | ||
// Targets can depend on other targets in this package, and on products in packages this package depends on. | ||
.target( | ||
name: "UIAdapter", | ||
dependencies: [], | ||
path: "Sources" | ||
) | ||
] | ||
) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,183 @@ | ||
# ScreenAdapter | ||
屏幕适配器 | ||
# UIAdapter - 等比例缩放屏幕适配 | ||
|
||
[![License](https://img.shields.io/cocoapods/l/UIAdapter.svg)](LICENSE) | ||
![Swift](https://img.shields.io/badge/Swift-5.2-orange.svg) | ||
![Platform](https://img.shields.io/cocoapods/p/UIAdapter.svg?style=flat) | ||
[![Swift Package Manager](https://img.shields.io/badge/Swift_Package_Manager-compatible-4BC51D.svg?style=flat")](https://swift.org/package-manager/) | ||
[![Carthage](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) | ||
[![Cocoapods](https://img.shields.io/cocoapods/v/UIAdapter.svg)](https://cocoapods.org) | ||
|
||
## [:cn:天朝子民](README_CN.md) | ||
|
||
## Features | ||
|
||
- [x] Numerical type fast conversion | ||
- [x] Storyboard equal scale adaptation | ||
- [x] Xib equal scale adaptation | ||
- [x] Custom calculation processing | ||
- [x] Quick match for each screen size type | ||
|
||
|
||
## Installation | ||
|
||
**CocoaPods - Podfile** | ||
|
||
```ruby | ||
pod 'UIAdapter' | ||
``` | ||
|
||
**Carthage - Cartfile** | ||
|
||
```ruby | ||
github "lixiang1994/UIAdapter" | ||
``` | ||
|
||
#### [Swift Package Manager for Apple platforms](https://developer.apple.com/documentation/xcode/adding_package_dependencies_to_your_app) | ||
|
||
Select Xcode menu `File > Swift Packages > Add Package Dependency` and enter repository URL with GUI. | ||
``` | ||
Repository: https://github.com/lixiang1994/UIAdapter | ||
``` | ||
|
||
#### [Swift Package Manager](https://swift.org/package-manager/) | ||
|
||
Add the following to the dependencies of your `Package.swift`: | ||
```swift | ||
.package(url: "https://github.com/lixiang1994/UIAdapter.git", from: "version") | ||
``` | ||
|
||
## Usage | ||
|
||
First make sure to import the framework: | ||
|
||
```swift | ||
import UIAdapter | ||
``` | ||
|
||
Here are some usage examples. All devices are also available as simulators: | ||
|
||
|
||
### Auto | ||
|
||
|
||
AutoLayout (SnapKit): | ||
|
||
```swift | ||
private func setupLayout() { | ||
cardView.snp.makeConstraints { (make) in | ||
make.top.equalTo(16.auto()) | ||
make.left.right.equalToSuperview().inset(15.auto()) | ||
make.bottom.equalTo(-26.auto()) | ||
} | ||
|
||
lineView.snp.makeConstraints { (make) in | ||
make.left.right.equalToSuperview().inset(15.auto()) | ||
make.top.equalTo(titleLabel.snp.bottom) | ||
make.height.equalTo(1) | ||
} | ||
|
||
titleLabel.snp.makeConstraints { (make) in | ||
make.top.equalToSuperview() | ||
make.left.equalTo(15.auto()) | ||
make.height.equalTo(48.auto()) | ||
} | ||
|
||
stateLabel.snp.makeConstraints { (make) in | ||
make.top.equalTo(lineView).offset(10.auto()) | ||
make.left.equalTo(15.auto()) | ||
make.height.equalTo(15.auto()) | ||
} | ||
} | ||
``` | ||
|
||
Property (Then): | ||
|
||
```swift | ||
private lazy var cardView = UIView().then { | ||
$0.cornerRadius = 6.auto() | ||
$0.backgroundColor = .white | ||
} | ||
|
||
private lazy var lineView = UIView().then { | ||
$0.backgroundColor = .hex("000000", alpha: 0.05) | ||
} | ||
|
||
private lazy var titleLabel = UILabel().then { | ||
$0.textColor = .black | ||
$0.font = .systemFont(ofSize: 20.auto(), weight: .medium) | ||
} | ||
|
||
private lazy var stateLabel = UILabel().then { | ||
$0.textColor = .gray | ||
$0.font = .systemFont(ofSize: 12.auto(), weight: .medium) | ||
} | ||
``` | ||
|
||
Storyboard / Xib: | ||
|
||
![Constraint](Resources/Storyboard%20Constraint.png) | ||
![UILabel Font](Resources/Storyboard%20Label%20Font.png) | ||
|
||
### Screen | ||
|
||
e.g. | ||
|
||
```swift | ||
// default other screen numberOfLines = 0 | ||
// 3.5 inches screen numberOfLines = 1 | ||
// 4.0 inches screen numberOfLines = 2 | ||
label.numberOfLines = 0.screen.inch(._3_5, is: 1).inch(._4_0, is: 2).value | ||
``` | ||
|
||
|
||
```swift | ||
// default other screen numberOfLines = 0 | ||
// width 320 screen numberOfLines = 1 | ||
// width 375 inches screen numberOfLines = 2 | ||
label.numberOfLines = 0.screen.width(._320, is: 1).width(._375, is: 2).value | ||
``` | ||
|
||
|
||
```swift | ||
print("this is " + | ||
"default".screen | ||
.width(._320, is: "width 320") | ||
.width(._375, is: "width 375") | ||
.height(._844, is: "height 844") | ||
.height(._812, is: "height 812") | ||
.inch(._4_7, is: "4.7 inches") | ||
.inch(._5_8, is: "5.8 inches") | ||
.inch(._6_5, is: "6.5 inches") | ||
.level(.compact, is: "screen 3: 2") | ||
.level(.regular, is: "screen 16: 9") | ||
.level(.full, is: "screen 19.5: 9") | ||
.value | ||
) | ||
``` | ||
|
||
|
||
## Screenshot | ||
|
||
![TikTok 1](Resources/Storyboard%20TikTok%20Demo1.jpg) | ||
|
||
![TikTok 2](Resources/Storyboard%20TikTok%20Demo2.jpg) | ||
|
||
## Contributing | ||
|
||
If you have the need for a specific feature that you want implemented or if you experienced a bug, please open an issue. | ||
If you extended the functionality of UIAdapter yourself and want others to use it too, please submit a pull request. | ||
|
||
|
||
## License | ||
|
||
UIAdapter is under MIT license. See the [LICENSE](LICENSE) file for more info. | ||
|
||
|
||
>### [相关文章 Inch](https://www.jianshu.com/p/d2c09cb65ef7) | ||
>### [相关文章 Auto](https://www.jianshu.com/p/e0e12206e0c7) | ||
>### [相关文章 Auto](https://www.jianshu.com/p/48c67d0c95b6) | ||
----- | ||
|
||
> ## 欢迎入群交流 | ||
![QQ](https://github.com/lixiang1994/Resources/blob/master/QQClub/QQClub.JPG) |
Oops, something went wrong.