List of awesome iOS & Swift stuff!!
Go to file
2021-04-10 04:05:27 -05:00
.swiftlint.yml Swift Lint file upload 2021-04-09 15:21:02 -05:00
README.md Update README.md 2021-04-10 04:05:27 -05:00

Useful iOS

Content

Coding convention

set of guidelines for a specific programming language that recommend programming style

Swift Style Guide

Swift Lint

The way of force you to adapt coding convention

otherwise project build will FAILED

put .yml file into root folder and apply following code in Build Phases

Design Pattern

Delegate pattern

UIDesign

HIG(Human Interface Guidelines)

iOS icon

  • icon8 you can download icons for your APP

UIdesign inspiration

API

Various API Site

JSON

JSON is a language-independent data format

Which is relative with KEY - VALUE pair

{
    "main": [
        {
            "title": "example1",
            "body": "body example1"
        },
        {
            "title": "example2",
            "body: "body example2"
        },
    ]
}

JSON parser extension for Chrome

This extension makes JSON more structable JSON parser pro FREE 👍

Third Party Library

This github contains all the popular libraries in Swift👍