Skip to content

Instantly share code, notes, and snippets.

@Animaxx
Animaxx / merge.sh
Created June 5, 2019 23:07
Merge device and simulator structure framework from Xcode Products folder.
usage="$(basename "$0") [-h] [-f String] [-m String]
where:
-h show this help text
-f set building framework name (required)
"
while getopts f:h option
do
@Animaxx
Animaxx / universal_build.sh
Created June 5, 2019 23:03
Build iOS framework automatically
#!/bin/sh
# FMK_NAME=$1
usage="$(basename "$0") [-h] [-f String] [-m String]
where:
-h show this help text
-f set building framework name (required)
-m building mode: device only [device]; device and simulator [full] (default: full)
@Animaxx
Animaxx / A_ChainAnimation.swift
Created March 23, 2017 21:26
Chain Animation - Simple UIView Animation block - Swift version
//
// A_SimpleChainAnimation.swift
// A_ChainAnimation
//
// Created by Animax Deng on 3/4/17.
// Copyright © 2017 Animx. All rights reserved.
//
import UIKit