An open API service indexing awesome lists of open source software.

https://github.com/xaoxuu/inspire

主题式Swift开发工具包,包含布局、颜色、字体等。
https://github.com/xaoxuu/inspire

cocoapods framework podfile pods swift

Last synced: 13 days ago
JSON representation

主题式Swift开发工具包,包含布局、颜色、字体等。

Awesome Lists containing this project

README

        

# Inspire

基于主题的Swift开发基础工具包

包含颜色、字体、布局等,可配置可缓存

## 特性

### 可缓存的

- App 的样式参数(颜色、字体、布局)存储于 json 文件中。

### 可配置的

- 可由用户修改主题参数并保存或者分享。

### 提供便利

- 便捷的方式获取屏幕布局参数、如各边安全区域尺寸,便于机型适配。

## 开始使用

### 使用 CocoaPods

```ruby 在 Podfile 中添加:
pod 'Inspire'
```

```sh 然后执行:
pod install
```

### 使用 Package.swift

在 Package.swift 中声明依赖项:

```swift
.package(url: "https://github.com/xaoxuu/Inspire.git", from: "1.1.0"),
```

## 用法示例

### 颜色

```swift
view.backgroundColor = .background
view.tintColor = .accent
```

### 字体

```swift
let lb = UILabel()
lb.font = .regular(15)
lb.font = .bold(20, for: .title)
lb.font = .regular(14, for: .code)
```

### 边距

```swift
let topMargin = layout.topBarHeight(for: self)
let bottomMargin = layout.bottomBarHeight(for: self)
let safeArea = layout.safeAreaInsets(for: self)
let safeArea2 = Inspire.shared.screen.safeAreaInsets
```

```swift
let layout = Inspire.shared.layout
view.frame.size.height = layout.rowHeight
view.layer.cornerRadius = layout.cornerRadius.large
```

### 缓存

```swift
// 保存
Inspire.shared.cache()
Inspire.shared.cache(named: "myTheme")
// 读取
let ipr = Inspire.init("myTheme")
```