// 《函数变量》
// ViewController.swift
// Function_variables
/*
* 函数可以存储在变量中。
* 准备条件是:我们首先要声明一个变量,它能够存储一个接受特定参数、返回值的函数。
* 条件是:一个函数的参数与返回值类型都与声明中的函数相同。
*/
// Created by 周双建 on 16/2/14.
// Copyright © 2016年周双建. All rights reserved.
//
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// 添加主色
self.view.backgroundColor =UIColor.whiteColor()
// 创建导航标题
self.view.addSubview(self.makeNav())
// 进行下一步
self.NextDo()
// 函数的作为变量的嵌套
let Love = self.GetResult(25, toAll:AddCount)