swift学习之UI控件(一)
//
// ViewController.swift
// test
//
// Created by chuangqu on 15/7/23.
// Copyright (c) 2015年 theway. All rights reserved.
//
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
var lable = UILabel(frame: CGRectMake(120, 20, 100, 20))
lable.text = "小猪飞!"
lable.textColor = UIColor.blueColor()
lable.backgroundColor = UIColor.brownColor()
lable.textAlignment = NSTextAlignment.Center
lable.shadowColor = UIColor.grayColor()
lable.shadowOffset = CGSizeMake(-5, 5)
lable.font = UIFont(name: "zapfino", size: 20)
self.view.addSubview(lable)
var file = UITextField(frame: CGRectMake(120, 80, 100, 20))
file.text = "肖"
file.textColor = UIColor.blueColor()
self.view.addSubview(file)
var button:UIButton = UIButton.buttonWithType(UIButtonType.System)as!UIButton;
button.frame = CGRectMake(120, 150, 100, 80)
button.setTitle("猪fjygjyy", forState:UIControlState.Normal)
// button.setImage(UIImage(named: "0"), forState: .Normal)
button.adjustsImageWhenHighlighted = false
button.setBackgroundImage(UIImage(named: "0"), forState: .Normal)//设置背景
button.addTarget(self, action: Selector("test"), forControlEvents: UIControlEvents.TouchUpInside)
self.view.addSubview(button)
segmented ()
/*
创建一个文本框
*/
var textfield = UITextField(frame: CGRectMake(10, 20, 100, 20))
textfield.borderStyle = UITextBorderStyle.RoundedRect//设置文本框为圆边圆角
textfield.placeholder = "yuebu"//设置提示语句
// textfield.text = "hhhh"//设置默认值
textfield.adjustsFontSizeToFitWidth = true //设置当超出文本时文字省略方式
// textfield.textAlignment = NSTextAlignment.Center//设置文字的水平对齐属性
// textfield.contentVerticalAlignment = UIControlContentVerticalAlignment.Center//垂直对齐方式
//简写
// textfield.returnKeyType = UIReturnKeyType.Go//设置键盘的返回键作用
textfield.contentVerticalAlignment = .Center
textfield.clearButtonMode = .WhileEditing
// textfield.clearButtonMode = UITextFieldViewMode.UnlessEditing
// textfield.clearButtonMode = .UnlessEditing
self.view.addSubview(textfield)
// kaiguan()
img ()
animation ()
// progess()
// test()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func test() {
// button.setTitle("小大", forState: UIControlState.Normal)//不能改变UI,需在UI线程中操作
println("我肾很好!")
}
func kaiguan (){
var uiswitch : UISwitch
uiswitch = UISwitch()
uiswitch.center = CGPointMake(100, 50)
uiswitch.on = true
self.view.addSubview(uiswitch)
}
func segmented (){
var items = ["张","萧","阿","姨"]//,UIImage(named: "icon")]
var seg = UISegmentedControl(items: items)
seg.center = self.view.center
seg.selectedSegmentIndex = 1
self.view.addSubview(seg)
}
func img (){
var imge = UIImageView(image: UIImage(named: "3"))
imge.frame = CGRectMake(90,350, 200, 200)
self.view.addSubview(imge)
}
var imageview : UIImageView!
func animation (){
imageview = UIImageView()
imageview.frame = CGRectMake(90,350, 200, 200)
//帧动画设置
// imageview.animationImages = [UIImage(named:"0"),UIImage(named:"3")]
//设置变化时间
imageview.animationDuration = 0.5
self.view.addSubview(imageview)
}
override func viewWillAppear(animated: Bool) {
super.viewWillAppear(animated)
imageview.startAnimating()
}
override func viewWillDisappear(animated: Bool) {
super.viewWillDisappear(animated)
imageview.stopAnimating()
}
// override func DidLoad() {
// super.viewDidLoad()
// imageview = UIImageView()
// imageview.frame = CGRectMake(90,350, 200, 200)
// //帧动画设置
// imageview.animationImages = [UIImage(named: "3"),UIImage(named: "3"),UIImage(named: "3")]
// //设置变化时间
// imageview.animationDuration = 0.5
// self.view.addSubview(imageview)
//
// }
func progess(){
var progres = UIProgressView(progressViewStyle: UIProgressViewStyle.Default)
progres.center = self.view.center
progres.progress = 0.5
progres.setProgress(0.8, animated: true)
self.view.addSubview(progres)
var alert = UIAlertView()
alert.frame = CGRectMake(200, 150, 100, 100)
alert.title = "刘大神帅不"
alert.message = "是/否"
alert.addButtonWithTitle("是")
alert.addButtonWithTitle("否")
alert.cancelButtonIndex = 0
alert.delegate = self
alert.show()
hhh(alert, clickedButtonAlertIndex: alert.cancelButtonIndex)
}
func hhh(alert:UIAlertView,clickedButtonAlertIndex button:Int){
if button == alert.cancelButtonIndex {
print("不帅")
}
else{
print("不帅!!!!")
}
}
}
swift学习之UI控件(一)的更多相关文章
- 用swift创建各种UI控件【iSwifting社区】
为了方便大家学习,www.iSwifting.com社区为大家准备了创建各种UI控件的代码.開始看着语法可能有些别扭,当用习惯了,就认为还是非常不错的. 社区还添加了问答专区.有问题的朋友.虽然问.大 ...
- Swift学习之熟悉控件
最近是比较清闲一些的,对于一个开发者来说,这也是一个很好的充电机会.以前做项目都是使用Objective-C去开发,但我们都知道,Swift语言从2014年的出现到现在,一步一步变的完善,渐渐变的受欢 ...
- 安卓学习之--UI控件用法 单选 按钮 下拉框
1.单选 .RadioGroup 可将各自不同的RadioButton ,设限于同一个Radio 按钮组,同一个RadioGroup 组里的按钮,只能做出单一选择(单选题). <RadioGro ...
- Android学习路-UI控件
- Swift UI控件详细介绍(上)
UI控件 首先介绍一下AppDelegate.swift@UIApplicationMain 调用了OC中的UIApplicationMain函数:UIApplicationMain是iOS应用程序的 ...
- iOS基础UI控件介绍-Swift版
iOS基础UI控件总结 iOS基础控件包括以下几类: 1.继承自NSObject:(暂列为控件) UIColor //颜色 UIImage //图像 2.继承自UIView: 只能相应手势UIGest ...
- IOS学习资源收集--开发UI控件相关
收集的一些本人了解过的iOS开发UI控件相关的代码资源(本文持续补充更新) 内容大纲: 1.本人在github上也上传了我分装好的一些可重复利用的UI控件 2.计时相关的自定义UILabel控件 正文 ...
- AppleWatch___学习笔记(二)UI布局和UI控件
1.UI布局 直接开发,你会发现Apple Watch并不支持AutoLayout,WatchKit里有个类叫做WKInterfaceGroup,乍一看像是UIView,但是这货其实是用来布局的.从 ...
- ios 中的UI控件学习总结(1)
UIKit框架提供了非常多功能强大又易用的UI控件 下面列举一些在开发中可能用得上的UI控件 UIButton 按钮 UILabel 文本标签 UITextField 文本输入框 UIImageVie ...
随机推荐
- JS读书心得:《JavaScript框架设计》——第12章 异步处理
一.何为异步 执行任务的过程可以被分为发起和执行两个部分. 同步执行模式:任务发起后必须等待直到任务执行完成并返回结果后,才会执行下一个任务. 异步执行模式:任务发起后不等待任务执行完成,而是马上 ...
- d
1.sql题1表名:成绩表姓名 课程 分数张三 语文 81张三 数学 75李四 语文 56李四 数学 9 ...
- TreeView 自定义显示checkbox
本项目需要对TreeView进行定制,要求比较简单,主要要求如下: Winform中TreeView控件默认只支持所有级别的CheckBox显示或者不显示,不能控制制定Level的树节点显示 效果如下 ...
- WCF项目中出现常见错误的解决方法:基础连接已经关闭: 连接被意外关闭
在我们开发WCF项目的时候,常常会碰到一些莫名其妙的错误,有时候如果根据它的错误提示信息,一般很难定位到具体的问题所在,而由于WCF服务的特殊性,调试起来也不是那么方便,因此往往会花费不少时间来进行跟 ...
- html5掷骰子的小demo
代码如下: <!DOCTYPE> <html> <title>柯乐义</title> <head> <script> var l ...
- jQuery Mobile动态刷新页面样式
当我们使用Ajax或者javascript动态在页面上添加元素后,如添加select控件的option元素,添加ul的li元素.添加之后我们会发现,它们显示的样式不是jQuery Mobile的炫酷样 ...
- CGI与Servlet的比较
转自:http://www.maxhis.info/java/cgi-vs-servlet/ 谢! 概括来说,CGI和Servlet可以完成相同的功能. 一:CGI(Common Gateway In ...
- Server Tomcat v7.0 Server at localhost was unable to&nbs 报错问题解决
在eclipse启动tomcat时遇到超时45秒的问题: Server Tomcat v7.0 Server at localhost was unable to start within 45 se ...
- 七个结构模式之外观模式(Facade Pattern)
定义: 为子系统的一组接口提供一个统一的入口,从而降低系统之间的耦合度,提高子系统的可用性.外观模式又称为门面模式,是迪米特法则的一个体现,主要目的就是降低耦合. 结构图 Facade:抽象外观类,子 ...
- PCL -语法错误:“::” error C2589: “(”:“::”右边的非法标记
1.错误原因:系统函数与pcl中的max函数冲突导致的 2.两种解决办法: 1)错误中max和min函数用括号括起来,例如"std::Max"修改为“(std::Max)”. 2) ...