Design Credit: Jakub Antalík
https://dribbble.com/shots/1646215-Health-app
A Pen by Tom Barton on CodePen.
Design Credit: Jakub Antalík
https://dribbble.com/shots/1646215-Health-app
A Pen by Tom Barton on CodePen.
Links and notes for ibeacon indoor location
##General links
##Trilatertion
#!/bin/bash | |
# | |
# This product includes software originally developed by IBM Corporation. | |
# | |
# | |
# Copyright IBM Corp. 2015 | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at |
#define ApplicationDelegate ((AppDelegate *)[[UIApplication sharedApplication] delegate]) | |
#define UserDefaults [NSUserDefaults standardUserDefaults] | |
#define NotificationCenter [NSNotificationCenter defaultCenter] | |
#define SharedApplication [UIApplication sharedApplication] | |
#define Bundle [NSBundle mainBundle] | |
#define MainScreen [UIScreen mainScreen] | |
#define ShowNetworkActivityIndicator() [UIApplication sharedApplication].networkActivityIndicatorVisible = YES | |
#define HideNetworkActivityIndicator() [UIApplication sharedApplication].networkActivityIndicatorVisible = NO | |
#define NetworkActivityIndicatorVisible(x) [UIApplication sharedApplication].networkActivityIndicatorVisible = x | |
#define NavBar self.navigationController.navigationBar |