swift -UIView的使用

//
//  ViewController.swift
//  SwiftUI程序-07

import UIKit

class ViewController: UIViewController {
    var clickCount:Int = 0;//clickCount 并没有声明为int
    var myLabel:UILabel? //申明一个全局变量?表示初始值为空
    override func viewDidLoad() {
        super.viewDidLoad()//是基类当中有的 必须写个关键字
        let color = UIColor.redColor();//创建一个红色对象
        //color 是一个常量
        let color1 = UIColor.grayColor();
        self.view.backgroundColor = color1;

        //super 表示父类
        //3.创建一个Controller 

        //把背静颜色改为红色
        // Do any additional setup after loading the view, typically from a nib.

        //在界面上加个UILabel
        //CGRect 相当于之前的CGRectMake
        //frame 在父视图中的区间坐标
        //这里是标签内容,将oc 中的标签来拿使用
        let rect = CGRect(x:0,y:100,width:320,height:44);
        myLabel = UILabel(frame: rect);
        myLabel!.text = "百度";//表示为空也可以去创建
        //把myLabel 对象加入到self.view 对象上
        self.view.addSubview(myLabel!);
        myLabel!.backgroundColor = UIColor.redColor();

        //创建一个UIButton
        var myButton = UIButton(frame: CGRect(x:100,y:200,width:100,height:44));

        myButton.backgroundColor = UIColor.purpleColor();
        //给button 设置文字
        //settitle 第一个参数不需要跟标签,第二个参数forstate 是标签
        myButton.setTitle("点击我", forState:.Normal);
        //给button 设置一个文字

        //给mybuttom 增加点击事件
        myButton.addTarget(self, action: "clickMe:", forControlEvents:.TouchUpInside);
        self.view.addSubview(myButton);
    }
//定义一个点击事件的函数

    func clickMe(sender:UIButton){
        clickCount += 1;
        /**
        *  \(这里放变量或者表达式)
        */
        println("click \(clickCount)");
        myLabel!.text = "百度\(clickCount)";
    }
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

}

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-26 04:25:07

swift -UIView的使用的相关文章

Swift UIview简答动画

Swift UIView本事自带了一些简单的动画. 如果不是很复杂的需求,可以考虑使用此处的方法. 下面我们简单尝试一下 首先创建三个View 分别设置三中背景色 let view1=UIView(frame: CGRectMake(10, 50, 200, 200)) let view2=UIView(frame: CGRectMake(60, 100, 200, 200)) let view3=UIView(frame: CGRectMake(110, 150, 200, 200)) vie

Swift UIView 层次调整

Swift 中添加的UIView都是有层级的. 我们先添加三个看一看 let view1=UIView(frame: CGRectMake(10, 50, 200, 200)) let view2=UIView(frame: CGRectMake(60, 100, 200, 200)) let view3=UIView(frame: CGRectMake(110, 150, 200, 200)) view1.backgroundColor=UIColor.redColor() view2.bac

Swift UIView 常用添加方法

Swift 添加UIView有几种常见方法 func insertSubview(view: UIView, atIndex index: Int) func addSubview(view: UIView) func insertSubview(view: UIView, belowSubview siblingSubview: UIView) func insertSubview(view: UIView, aboveSubview siblingSubview: UIView) 首先 ad

Swift - UIView的常用属性和常用方法总结

1,UIView常用的一些属性如下: frame:相对父视图的坐标和大小(x,y,w,h) bounds:相对自身的坐标和大小,所以bounds的x和y永远为0(0,0,w,h) center:相对父视图的中点坐标 transform:控制视图的放大缩小和旋转 superview:获取父视图 subviews:获取所有子视图 alpha:视图的透明度(0.0-1.0) tag:视图的标志(Int类型,默认等于0),设置后,可以通过viewWithTag方法拿到这个视图 2,UIView的常用方法

swift uiview弹出动画

UIView.animateWithDuration(0.5, delay: 0.0, usingSpringWithDamping: 0.3, initialSpringVelocity: 0.0, options: UIViewAnimationOptions.CurveEaseInOut, animations: { () -> Void in //在这里面处理你的空间frame self.pressGoodsBtn.frame = CGRect(x: (SCREEN_WIDTH-200)

swift UIView 扩展

import Foundation import UIKit /// /// @brief UIView的扩展方法,方便工程全局使用扩展方法来创建或者使用所有继承于UIView的控件 /// extension UIView { /// /// 获取或设置origin.x /// func originX() ->CGFloat { return self.frame.origin.x } func originX(let originX: CGFloat) { var rect = self.

Swift学习笔记一:与OC的区别

在 Swift 中没有了 main.m,@UIApplicationMain 是程序入口 在 Swift 中只有 .swift 文件,没有 .h/.m 文件的区分 在 Swift 中,一个类就是用一对 {} 括起的,没有 @implementation 和 @end  1. 方法调用  OC      [[UIView alloc] initWithXXX:]  Swift   UIView(XXX: )    UIView() 类名()    ==  alloc / init 2. 类方法  

Swift学习的第一个demo,讲解了一些常用的知识点

/** 1. OC [UIView alloc] initWithXXX:] Swift UIView(XXX:) 类名() == alloc / init 等价 2. 类方法 OC [UIColor redColor] Swift UIColor.red 3. 访问当前对象的属性,可以不使用'self.' 建议:都不用,在编译器提示的时候,在添加,会对'语境'有更好地体会 原因:闭包(类似于OC中的block),需要使用'self.' 4. 没有';' ';' 的目的是分割语句的,在Swift

Swift开发语法

Swift开发入门 简介 Swift 语言由苹果公司在 2014 年推出,用来撰写 OS X 和 iOS 应用程序 2014 年,在 Apple WWDC 发布 历史 2010 年 7 月,苹果开发者工具部门总监 Chris Lattner(克里斯·拉特纳) 开始着手 Swift 编程语言的设计工作 用一年时间,完成基本架构 Swift 大约历经 4 年的开发期,2014 年 6 月发表 克里斯·拉特纳 ) 特色 苹果宣称 Swift 的特点是:快速.现代.安全.互动,而且明显优于 Object