Swift开发教程--设置UIViewController的背景透明

非常easy的一句代码

self.view.backgroundColor =
UIColor.clearColor()

由此联想开来,非常多的控件想设置为背景透明都能够用UIColor.clearColor()

时间: 2024-11-05 18:58:35

Swift开发教程--设置UIViewController的背景透明的相关文章

Swift开发教程--如何使UITableViewController背景透明

self.tableView.backgroundView?.backgroundColor = UIColor.clearColor(); self.tableView.backgroundColor = UIColor.clearColor(); 版权声明:本文为博主原创文章,未经博主允许不得转载.

Swift开发教程--设置圆角Button和圆角边框TextView

设置圆角Button button.layer.borderColor = UIColor.whiteColor().CGColor; button.layer.borderWidth = 2; button.layer.cornerRadius = 16; 设置圆角边框TextView inputTextView.layer.borderColor = UIColor(red: 60/255, green: 40/255, blue: 129/255, alpha: 1).CGColor; i

Swift开发教程--实现UITableView报错does not conform to protocol 'UITableViewDataSource‘

通过实践,要是把下面三个协议方法都实现了就不会报错了.另外还需要注意!的问题. func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int{ } func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{ } func tableView(ta

Swift开发教程

IOS开发视频教程非常全面,总共39G,系统的介绍了Swift这门苹果今年推出的开发语言.苏苏是也是一个IOS开发小菜,Swift比Objective-C更加容易让新手理解,如果希望能进入IOS这个高帅富程序员行列,下载它学习吧. 教程目录: 第1季 Swift基础语法 第2季 Swift高级语法 第3季 构建Swift UI 第4季 Swift微信 From:http://www.2cifang.com/thread-612-1-1.html 另外还可以参看: 苹果Swift编程语言入门教程[

Swift开发教程--怎样设置状态栏的文字颜色

第一步:在Info.plist中设置UIViewControllerBasedStatusBarAppearance 为NO 第二步:在viewDidLoad中加一句 UIApplication.sharedApplication().statusBarStyle = UIStatusBarStyle.LightContent; 这样就能够把默认的黑色改为白色.

Swift开发教程--如何设置状态栏的文字颜色

第一步:在Info.plist中设置UIViewControllerBasedStatusBarAppearance 为NO 第二步:在viewDidLoad中加一句 UIApplication.sharedApplication().statusBarStyle = UIStatusBarStyle.LightContent; 这样就可以把默认的黑色改为白色. 版权声明:本文为博主原创文章,未经博主允许不得转载.

swift开发教程--如何设置导航控制器标题栏的字体及颜色

self.navigationController?.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName:UIColor.whiteColor(),UIFont(name: "Heiti SC", size: 24.0)!]; 版权声明:本文为博主原创文章,未经博主允许不得转载.

Swift开发教程--使用Storyboard进行界面跳转

使用storyboard结合代码来做确实可以给开发带来很多的便利. 在实践的过程中,我们经常会遇到界面的跳转问题.通过控件和界面的建立的"连接"就可以了. 如果是navigationcontroller的跳转,则选择push的方式(否则xcode运行的时候会报错): 如果是Viewcontroller的跳转,则选择modal的方式. 如果你想通过代码来打开另外一个界面,则需要设置他们之间连接的segue.identifier,比如你设置为jumpid. 然后代码就可以这么写: self

Swift开发教程--Swift的基本语法

下面来介绍Swift的基本用法: println("Hello, World!") println("你好,世界!") // 定义一个常量,使用关键字"let" // 在Swift中,几乎对所有的基本数据类型或者是对象类型使用结构体进行了重写 let haiDian = "海淀" // let haiDian: String = "海淀"        // 在Swift中,系统会帮你做类型推断,上一行的代