//1、root控制器的创建

       var rootCtrl =RootViewController()

       var root:UINavigationController =UINavigationController(rootViewController: rootCtrl)

       self.window!.rootViewController =
root

//2、tab控制器的创建

        var tab =UITabBarController()

        tab.tabBar.barTintColor =UIColor.blackColor()

        tab.viewControllers = [oneCtrl, twoCtrl, threeCtrl, fourCtrl, fiveCtrl]

        self.window!.rootViewController =
tab

//3、声明属性

   var tableView:UITableView?

//4、抽出TableView的创建方法

   func _initTableView(){

        //TableView的创建和设置

))

        self.tableView!.delegate =self

        self.tableView!.dataSource =self 

        self.tableView!.autoresizingMask = UIViewAutoresizing.FlexibleHeight
|UIViewAutoresizing.FlexibleWidth

        self.tableView!.registerClass(UITableViewCell.self,
forCellReuseIdentifier:"cell")

        self.view?

.addSubview(self.tableView)

        self.tableView!.separatorColor =UIColor.cyanColor()

   }

    //dataSource 返回100个row

   func tableView(tableView:UITableView!, numberOfRowsInSection section: Int) ->Int

   {

          

   }

    //cell的创建

   func tableView(tableView:UITableView!, cellForRowAtIndexPath indexPath:NSIndexPath!) ->UITableViewCell!

    {

      let cell = tableView .dequeueReusableCellWithIdentifier("cell",
forIndexPath: indexPath)asUITableViewCell

           cell.textLabel.text =String(format:"%i",
indexPath.row)

       return cell

    }

UIKit

// UILabel

   func createLabel() ->UILabel {

        ,,,))

        label.backgroundColor =UIColor.clearColor()

        label.textAlignment =NSTextAlignment.Center

        label.textColor =UIColor.blackColor()

        label.)

        label.text ="Hello Swift"

       return label

    }

    

    // UIView

   func createView() ->UIView {

       var orginY =CGRectGetMaxY(self.myLabel.frame)
+

       ,
orginY,,))

           myView.backgroundColor =UIColor.whiteColor()

       return myView;

    }

    

    // UIButton

   func createButton() ->UIButton {

       var orginY =CGRectGetMaxY(self.myView.frame)
+

       ,
orginY,,))

        button.backgroundColor =UIColor.greenColor()

        button.setTitle("Button", forState:UIControlState.Normal)

        button.)

        button.addTarget(self, action:"tappedButton:", forControlEvents:UIControlEvents.TouchUpInside)

        button.

       return button

    }

    

    // UIImageView

   func createImageView() ->UIImageView {

       var orginY =CGRectGetMaxY(self.myButton.frame)
+

       )/,
orginY,,))

       var image:UIImage =UIImage(named:"user")

           imageView.image = image

       return imageView

    }

    

    // Button target

   func tappedButton(sender:UIButton!) {

       println(sender.tag)

    }

  push 控制器的方法

var listCtrl:UIViewController =UIViewController()

            listCtrl.title ="View Controller"

            listCtrl.view.backgroundColor =UIColor.redColor()

       self.navigationController.pushViewController(listCtrl, animated:true)

  pop

self.navigationController.popViewControllerAnimated(true)

使用Swift开发iOS项目、UI创建、方法调用的更多相关文章

  1. Swift开发iOS项目实战视频教程(一)---iOS真简单

    本课主要介绍iOS项目的创建.第一个iOS项目的开发.UILabel.UIButton的使用. 假设你看完此视频还认为iOS非常难,请你来找我! 本教程摒弃枯燥的语法和知识解说,全是有趣有料的项目实战 ...

  2. Swift开发iOS项目实战视频教程(二)---图片与动画

    本课主要介绍UIImageview.NSTimer的使用.并介绍了一种动画实现方式. 本教程摒弃枯燥的语法和知识解说.全是有趣有料的项目实战! 视频优酷链接:v.youku.com/v_show/id ...

  3. [Xcode 实际操作]一、博主领进门-(1)iOS项目的创建和项目模板的介绍

    目录:[Swift]Xcode实际操作 本文将演示iOS项目的创建和项目模板的介绍. [Create a new Xcode project]创建一个新的项目. 在弹出的模板窗口中,显示了所有的项目模 ...

  4. [AIR] NativeExtension在IOS下的开发实例 --- IOS项目的创建 (一)

    来源:http://bbs.9ria.com/thread-102037-1-1.html 最近看到本版块的很多关于NativeExtension的应用.但是都是在Android下面的应用.也有很多朋 ...

  5. Swift开发iOS应用过程中的问题和解决记录

    虚拟机里安装OSX+XCode开发环境 用真机的请直接跳过这个部分. 主要是在VitrualBox里安装mac系统和xcode,参考这篇教程,VirtualBox的版本是4.3.18 r96156,O ...

  6. iOS项目常用效果方法注意点集锦

    移动中隐藏tabBar,静止显示tabbar - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView { // 隐藏tabbar ...

  7. swift开发新项目总结

    新项目用swift3.0开发,现在基本一个月,来总结一下遇到的问题及解决方案   1,在确定新项目用swift后,第一个考虑的问题是用纯swift呢?还是用swift跟OC混编      考虑到新项目 ...

  8. Android开发笔记(5)——方法调用(基础)

    转载请注明——博客园igoslly:http://www.cnblogs.com/igoslly/p/6833544.html   在实际方法调用中,程序按顺序逐句执行,直到“}”结束. 为避免程序大 ...

  9. 【VS开发】使用MFC创建并调用ActiveX控件

    使用MFC创建并调用ActiveX控件 今天做了一下ActiveX的使用测试,总结一下: 首先使用MFC创建一个activeX的控件譬如ActiveXTest,编译成ocx并注册,然后另外编写一个测试 ...

随机推荐

  1. Perl语言入门--3--perl的控制结构

    表达式真假值总结: 表达式不一定是逻辑表达式,但一定要得出真假值   假值:逻辑值为假 值为0 字符串为空 列表为空 undef 其他情况为真 1.if {} elsif {} else {} 2.u ...

  2. AC日记——Dylans loves tree hdu 5274

    Dylans loves tree Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Othe ...

  3. 利用例子来理解spring的面向切面编程(使用@Aspect)

    上篇的例子,自动装配和自动检测Bean是使用注解的方式处理的,而面向切面编程是使用aop标签处理的,给我感觉就像中西医参合一样. 现在就来优化优化,全部使用注解的方式处理. 1.工程图:

  4. Java RandomAccessFile类

    RandomAccessFile类是Java中操作文件内容功能最强大的类,既可以读,也可以写. RandomAccessFile支持随机访问,可以直接访问文件的任意位置,在文件的任意位置读写数据.如果 ...

  5. Java集合——概述

    Java集合——概述 摘要:本文主要介绍了几种集合类型以及有关的一些知识点. 集合类图 类图 类图说明 所有集合类都位于java.util包下.Java的集合类主要由两个接口派生而出:Collecti ...

  6. java excel导出(基于注解)

    小白,做日志只是为了方便自己查看,能帮到别人当然更好,不喜勿喷. 上代码 依赖: <dependency> <groupId>org.apache.poi</groupI ...

  7. 【Exception】查看异常出现在具体的文件名/类名/方法名/具体行号

    今天在处理异常日志保存过程中,想要获取到异常抛出在具体在那个文件,哪个类下的哪个方法中的具体第几行,所以具体实现如下 try{ Integer adminID = Integer.parseInt(a ...

  8. Android获取窗口可视区域大小: getWindowVisibleDisplayFrame()

    getWindowVisibleDisplayFrame()方法 getWindowVisibleDisplayFrame()是View类下的一个方法,从方法的名字就可以看出,它是用来获取当前窗口可视 ...

  9. iOS 改变Search Bar中Scope Button中文本的颜色和字体

    - (void)initSearchbar{ self.wineSearchBar.delegate = self; [self.wineSearchBar setScopeBarButtonTitl ...

  10. Objective-C基础笔记(6)Block

    Block(代码段)封装了一段代码,能够在不论什么时候运行. Block能够作为函数參数或者函数返回值,而其本身又能够带输入參数或返回值.它和传统的函数指针非常相似,可是有差别:block是inlin ...