Skip to content

Instantly share code, notes, and snippets.

View manjuhere's full-sized avatar

Manjunath manjuhere

  • OlaCabs
  • Bangalore, India
View GitHub Profile
@manjuhere
manjuhere / fat-build.sh
Created March 11, 2019 15:16
Create a Universal Static Library/FAT framework for iOS. Combines arm (device) and x86(simulator) architectures.
#!/bin/sh
CUR_DIR=$(eval "pwd")
if [[ $1 == '' ]]; then
echo "Provide scheme to generate the Frameworks"
echo "./framework-build.sh (scheme_name)"
exit 1
fi
scheme=$1
@manjuhere
manjuhere / UIView+Border.swift
Last active October 23, 2019 06:08
Add & Remove borders on a UIView for various positions.
//
// UIView+Border.swift
//
// Created by Manjunath Chandrashekar on 03/11/18.
// Copyright © 2018 Manjunath Chandrashekar. All rights reserved.
//
import Foundation
extension UIView {