A Pen by Mark Hamilton on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html ng-app="ionicApp"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> | |
<title>Side Menus</title> | |
<link href="//code.ionicframework.com/nightly/css/ionic.css" rel="stylesheet"> | |
<script src="//code.ionicframework.com/nightly/js/ionic.bundle.js"></script> | |
</head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// SoundEffect.swift | |
// Sample class for quickly incorporating sound effects. | |
// | |
// Created by Mark Hamilton on 2/16/16. | |
// Copyright © 2016 dryverless. All rights reserved. | |
// | |
import UIKit | |
import AVFoundation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// DynamicImage.swift | |
// Simple class for quickly adding dynamic UIImageViews to your application. | |
// Create a single or array of Animation objects to assign to your DynamicImage. | |
// | |
// Created by Mark Hamilton on 2/17/16. Updated 2/18/16. | |
// Copyright © 2016 dryverless. All rights reserved. | |
// | |
import Foundation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// NilCoalescingOperator.swift | |
// Example of alternative method for doing if / else statements using Nil Coalescing Operator. | |
// | |
// Created by Mark Hamilton on 2/20/16. | |
// Copyright © 2016 dryverless. All rights reserved. | |
// | |
private var _otherObject: OtherObject? // returns nil unless set | |
private let _defaultObject: DefaultObject! = DefaultObject() // create a default |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// SampleAnnotation.swift | |
// Sample class for adding annotations to MKMapView. | |
// | |
// Created by Mark Hamilton on 2/21/16. | |
// Copyright © 2016 dryverless. All rights reserved. | |
// | |
import Foundation | |
import MapKit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewController.swift | |
// touchid-authentication-basics | |
// | |
// Created by Mark Hamilton on 3/2/16. | |
// Copyright © 2016 dryverless. All rights reserved. | |
// | |
import UIKit | |
import LocalAuthentication |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// GeoJSON.swift | |
// azure-search-basics | |
// | |
// Created by Mark Hamilton on 3/10/16. | |
// Copyright © 2016 dryverless. All rights reserved. | |
// | |
import Foundation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// AZResult.swift | |
// azure-search-basics | |
// | |
// Created by Mark Hamilton on 3/10/16. | |
// Copyright © 2016 dryverless. All rights reserved. | |
// | |
import Foundation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// TrailResult.swift | |
// azure-search-basics | |
// | |
// Created by Mark Hamilton on 3/10/16. | |
// Copyright © 2016 dryverless. All rights reserved. | |
// | |
import Foundation |
OlderNewer