Skip to content

Instantly share code, notes, and snippets.

View robert-waggott's full-sized avatar

Robert Waggott robert-waggott

  • United Kingdom
View GitHub Profile
module.exports = function(grunt) {
grunt.initConfig({
adminPassword: '',
solution: '',
versionNumber: grunt.option('versionNumber'),
buildAgent: grunt.option('buildAgent'),
@MilenPavlov
MilenPavlov / gist:a73a401d6299c02cc329
Last active July 19, 2017 09:14
Xamarin iOS – Create custom TreeView control for iPad / iPhone
This example uses Storyboards and iPad app. We have few entities here the TreeViewController (also holding the TreeViewSource delegate and my TreeNode Class) and TreeViewCell where I’m adding UIViews programatically.
Code as follows:
1) TreeViewController class:
public partial class TvViewController : UIViewController
{
public TvViewController(IntPtr handle) : base(handle)