[翻译]使用Swift在Xcode中创建自定义控件

使用Swift在Xcode中创建自定义控件

原文

IBDesignable and IBInspectable

With IBDesignable and IBInspectable,developers are allowed to create interface (or view) that renders in Interface Builder in real time. In general,to apply this new feature,all you need to do is create a visual class by subclassing UIView or UIControl and then prefix the class name with @IBDesignable keyword in Swift. If you are using Objective-C,you use IB_DESIGNABLE macro instead. Here is a sample code in Swift:

使用IBDesignable以及IBInspectable,开发者们被允许创建界面(或视图),在Interface Builder中实时渲染。通常,运用这个特性,你需要做的就是继承UIView或者UIControl的一个虚拟子类,然后在Swift中使用@IBDesignable关键字进行标识。如果你使用Objective-C,你可以使用IB_DESIGNABLE宏代替。下面是一段加单的Swift示例代码:

@IBDesignable 
class Rainbow: UIView {
}

In older versions of Xcode,you can edit the user-defined runtime attributes to change properties of an object (e.g. layer.cornerRadius) in Interface Builder. The problem is you have to key in the exact name of the properties. IBInspectable takes a step forward. When you prefix a property of the visual class with IBInspectable,the property will be exposed to the Interface Builder such that you can change its value in a much straightforward way:

在老版本的Xcode中,你可以在Interface Builder中编辑user-defined运行时属性来修改一个对象的特性(如:layer.cornerRadiusIBInspectable前进了一步。当你在一个虚拟子类前面使用IBInspectable关键字标识的时候,属性将会暴露给Interface Builder,这样你就可以使用一种非常直接的方式来修改它的值。

Again if you are developing your app in Swift,what you have to do is just prefix your chosen property with the keyword @IBInspectable. Here is a sample code snippet:

如果你使用Swift开发你的应用,你需要做的仅仅是标识出@IBInspectable。下面是一个简单的示例代码段:

@IBInspectable var firstColor: UIColor = UIColor.blackColor() {
     // Update your UI when value changes
 }

Building Your Xcode Project

Let’s get started by creating a new project in Xcode and choose Single View Application as a template,and name it RainbowDemo. We will use Swift in this project as the programming language,so don’t forget to choose it when creating the project.

让我们从在Xcode中创建一个新的项目并选择SingleViewApplication模板开始,然后明明它为RainbowDemo。我们将在这个项目中使用Swfit作为开发语言,所以在创建项目的时候不要忘记选择语言。

Once finished,select the Main.storyboard in the Project Navigator and drag a View object from the Object Library to the View Controller. Change its color to #38334C (or whatever color you want) as well as set its size to 600 by 434. Then put it in the center of the main view. Don’t forget to change the color of the main view to the same color of the view object.

创建成功后,在项目导航中选择Main.storyboard,然后从对象库中拖拽一个视图对象到视图控制器。修改它的颜色为#38334C,以及设置它的尺寸为600*434。然后把它放到主视图的中间。不要忘记修改主视图的颜色与视图对象的颜色一致。

With Xcode 6,you have to configure auto layout constraints for the view in order to support all types of iOS devices. Auto Layout is pretty powerful in the latest version of Xcode. For simple constraints,you can just click the Issues option of the Auto Layout menu and choose “Add Missing Contraints”,and Xcode will automatically configure the layout constraints for the view.

使用Xcode6,你需要为这个视图配置自动布局常量,以便支持全部的iOS设备。在最新一版本的Xcode中,自动布局(Auto Layout)是非常有力的。对于简单的约束,你可以仅仅点击自动布局菜单中的Issues并选择“Add Missing Contraints”,然后Xcode将为视图自动配置布局约束。

Creating Custom View Class

Now that you’ve created the view in storyboard,it’s time to create our custom view class. We’ll use the Swift class template for the class creation. Name it “Rainbow”.

现在,你已经在Storyboard中创建了视图,是时候创建我们的自定义视图类了。我们将使用Swift类模板来创建类。命名它为“Rainbow”。

Then insert the following code in the class:

然后在类中插入下面的代码:

import UIKit
 
class Rainbow: UIView {
    required init(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)
    }
    
    override init(frame: CGRect) {
        super.init(frame: frame)
    }
}

As mentioned before,the visual class is a subclass of UIView. In order to use our custom class in live rendering,we need to override both initializers as shown above. Next split the view by selecting the assistant editor:

就像上面提到的,这个虚拟类是UIView的子类。为了在渲染的时候使用我们的自定义类,我们需要重载上面呈现的代码。然后通过选择辅助编辑器来分割视图:

Once done,select the main storyboard in the assistant editor,so you can see what you are building in real time. Remember to change the class name of the view to “Rainbow” under the Identity inspector:

一旦完成,在辅助编辑器中选择Main.storyboard,然后你可以看到你实时创建的东西。记得在Identity Inspector中更改视图的类名为Rainbow

Implementing IBDesignable Controls

The first step to enable a control for live rendering is to set the custom view as Designable by prefixing the class name with @IBDesignable:

启用控件的实时渲染的第一步是通过给类名加上@IBDesignable前缀来设置自定义视图为Designable

@IBDesignable 
class Rainbow: UIView {
    ...
}

It’s kinda simple as you can see. But this simple keyword would make your development much easier. Next,we will add a few properties for setting the colors of the circles. Insert these lines of code in the Rainbow class:

这就像你看到的一样简单。但是这个简单的关键字将使你的开发非常的容易。下一步,我们将添加一些属性来设置圈的颜色。在Rainbow类中,插入几行代码:

@IBInspectable var firstColor: UIColor = UIColor(red: (37.0/255.0),green: (252.0/255),blue: (244.0/255.0),alpha: 1.0)
@IBInspectable var secondColor: UIColor = UIColor(red: (171.0/255.0),green: (250.0/255),blue: (81.0/255.0),alpha: 1.0)
@IBInspectable var thirdColor: UIColor = UIColor(red: (238.0/255.0),green: (32.0/255),blue: (53.0/255.0),alpha: 1.0)

Here,we predefine each property with a default colour,and tell it to redraw the view each time a user changes its value. Most importantly,we prefix each property with the @IBInspectable keyword. If you go to the Attributes inspectable of the view,you should find these properties visually:

这里,我们使用默认的颜色来预定义每一个属性,然后告诉他,在用户每一次更改它的值的时候重绘视图。最重要的是,我们给每一个属性都加上@IBIspectable关键字。如果你查看视图的属性指示器,你将找到这些视觉属性:

Cool,right? By indicating the properties as IBInspectable,you can edit them visually using color picker.

很酷,对么?通过标识属性为IBInspectable,你可以使用颜色选取器来编辑他们。

Okay let’s move to implement the main methods of the Rainbow class,which is used to draw a circle on the screen. Insert the following method in the class:

让我们开始实现Rainbow类用于在屏幕上绘制圆圈的主要方法。在类中插入下面的方���:

func addOval(lineWidth: CGFloat,path: CGPathRef,strokeStart: CGFloat,strokeEnd: CGFloat,strokeColor: UIColor,fillColor: UIColor,shadowRadius: CGFloat,shadowOpacity: Float,shadowOffsset: CGSize) {
    
    let arc = CAShapeLayer()
    arc.lineWidth = lineWidth
    arc.path = path
    arc.strokeStart = strokeStart
    arc.strokeEnd = strokeEnd
    arc.strokeColor = strokeColor.CGColor
    arc.fillColor = fillColor.CGColor
    arc.shadowColor = UIColor.blackColor().CGColor
    arc.shadowRadius = shadowRadius
    arc.shadowOpacity = shadowOpacity
    arc.shadowOffset = shadowOffsset
    layer.addSublayer(arc)
}

To make the code clean and readable,we create a common method for drawing a full or half circle according to the parameters provided by the caller. It’s pretty straightforward to draw a circle or an arc using CAShapeLayer class. You can control the start and end of the stoke using the strokeStart and strokeEnd properties. By varying the value of stokeEnd between 0.0 and 1.0,you can draw a full or partial circle. The rest of the properties are just used to set the color of a stroke,shadow color,etc. You can check out the official documentation for details of all the properties available in CAShapeLayer.

为了使代码干净且可读,我们创建一个公共的方法根据调用者传入的参数来来绘制一整个或半个圆。它使用CAShapeLayer类漂亮地直接绘制一个圆或一个圆弧。你可以使用strokeStart以及strokeEnd属性来控制线的起点和终点。通过控制strokeEnd的值在0.0与1.0之间,你可以绘制一整个或部分圆。剩下的属性仅用于设置线的颜色、阴影颜色等。你可以在官方文档中查看在CAShapeLayer中可用的属性的细节。

Next,insert the following methods in the Rainbow class:

接下来,插入下面的代码到Rainbow类中:

override func drawRect(rect: CGRect) {
    // Add ARCs
    self.addCirle(80,capRadius: 20,color: self.firstColor)
    self.addCirle(150,color: self.secondColor)
    self.addCirle(215,color: self.thirdColor)
}
 
func addCirle(arcRadius: CGFloat,capRadius: CGFloat,color: UIColor) {
    let X = CGRectGetMidX(self.bounds)
    let Y = CGRectGetMidY(self.bounds)
    
    // Bottom Oval
    let pathBottom = UIBezierPath(ovalInRect: CGRectMake((X - (arcRadius/2)),(Y - (arcRadius/2)),arcRadius,arcRadius)).CGPath
    self.addOval(20.0,path: pathBottom,strokeStart: 0,strokeEnd: 0.5,strokeColor: color,fillColor: UIColor.clearColor(),shadowRadius: 0,shadowOpacity: 0,shadowOffsset: CGSizeZero)
    
    // Middle Cap
    let pathMiddle = UIBezierPath(ovalInRect: CGRectMake((X - (capRadius/2)) - (arcRadius/2),(Y - (capRadius/2)),capRadius,capRadius)).CGPath
    self.addOval(0.0,path: pathMiddle,strokeEnd: 1.0,fillColor: color,shadowRadius: 5.0,shadowOpacity: 0.5,shadowOffsset: CGSizeZero)
 
    // Top Oval
    let pathTop = UIBezierPath(ovalInRect: CGRectMake((X - (arcRadius/2)),path: pathTop,strokeStart: 0.5,shadowOffsset: CGSizeZero)
    
}

The default implementation of the drawRect method does nothing. In order to draw circles in the view,we override the method to implement our own drawing code. The addCircle method takes in three parameters: arcRadius,capRadius and color. The arcRadius is the radius of the circle,while the capRadius is the radius of the rounded cap.

drawRect函数的默认实现什么都不做。为了在视图中绘制圆,我们重载这个函数来实现我们自己的绘制代码。addCircle方法使用三个参数:arcRadiuscapRadiuscolorarcRadius是圆的半径,capRadius是圆型覆盖的半径。

The addCircle method makes use of UIBezierPath to draw the arcs and it works like this:

  • First it draws a half circle at the bottom
  • Next it draws a full small circle at the edge of the arc.
  • Finally,it draws the other half of the circle

addCircle函数使用UIBezierPath来绘制圆弧,并且它像这样工作:

  1. 首先,绘制一个半圆在底部。
  2. 然后,绘制一整个小圆在弧的边界。
  3. 最后,绘制这个圆的加一半。

In the drawRect method,we call the addCircle method three times with different radius and color. This figure illustrates how the circles are drawn:

drawRect函数中,我们使用不同的半径与颜色调用addCircle函数三次。这个特点阐述这些圆如何被绘制:

UIBezierPath

With the IBInspectable properties,you are now free to change the color of each circle right in the Interface Builder without diving into the code:

使用IBInspectable属性,你现在可以在Interface Builder中自由地正确修改每一个圆,而不用沉浸在代码中。

Obviously,you can further expose arcRadius as an IBInspectable property. I’ll leave it as an exercise for you.

显然地,你可以更深入的挖掘arcRadius作为一个IBInspectable属性。

Summary

After going through this tutorial,I hope that you now understand how to use both IBDesignable and IBInspectable in Xcode 6. With the real-time preview in the Interface Builder,this new feature would allow you to create custom componenents in a more effcient way.

在随着这个教程做完之后,我希望你可以理解如何使用IBDesignableIBInspectable在Xcode6当中。利用在Interface Builder的实时预览,新的特性允许你使用一种高效的方式创建自定义组件。

For your reference,you can download the complete Xcode project from here. As always,leave me comment and share your thought about the tutorial.

为了便于你参考,你可以从这里下载完整的Xcode项目

Reference

  1. UIView
  2. CAShapeLayer
  3. UIBezierPath

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘贴.待开发的功能:1.支持自动生成约束2.开发设置页面3.做一个浏览器插件,支持不需要下载整个工程,可即时操作当前蓝湖浏览页面4.支持Flutter语言模板生成5.支持更多平台,如Sketch等6.支持用户自定义语言模板
现实生活中,我们听到的声音都是时间连续的,我们称为这种信号叫模拟信号。模拟信号需要进行数字化以后才能在计算机中使用。目前我们在计算机上进行音频播放都需要依赖于音频文件。那么音频文件如何生成的呢?音频文件的生成过程是将声音信息采样、量化和编码产生的数字信号的过程,我们人耳所能听到的声音频率范围为(20Hz~20KHz),因此音频文件格式的最大带宽是20KHZ。根据奈奎斯特的理论,音频文件的采样率一般在40~50KHZ之间。奈奎斯特采样定律,又称香农采样定律。...............
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿遍又亿遍,久久不能离开!看着小仙紫姐姐的蹦迪视频,除了一键三连还能做什么?突发奇想,能不能把舞蹈视频转成代码舞呢?说干就干,今天就手把手教大家如何把跳舞视频转成代码舞,跟着仙女姐姐一起蹦起来~视频来源:【紫颜】见过仙女蹦迪吗 【千盏】一、核心功能设计总体来说,我们需要分为以下几步完成:从B站上把小姐姐的视频下载下来对视频进行截取GIF,把截取的GIF通过ASCII Animator进行ASCII字符转换把转换的字符gif根据每
【Android App】实战项目之仿抖音的短视频分享App(附源码和演示视频 超详细必看)
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至2022年4月底。我已经将这篇博客的内容写为论文,上传至arxiv:https://arxiv.org/pdf/2204.10160.pdf欢迎大家指出我论文中的问题,特别是语法与用词问题在github上,我也上传了完整的项目:https://github.com/Whiffe/Custom-ava-dataset_Custom-Spatio-Temporally-Action-Video-Dataset关于自定义ava数据集,也是后台
因为我既对接过session、cookie,也对接过JWT,今年因为工作需要也对接了gtoken的2个版本,对这方面的理解还算深入。尤其是看到官方文档评论区又小伙伴表示看不懂,所以做了这期视频内容出来:视频在这里:本期内容对应B站的开源视频因为涉及的知识点比较多,视频内容比较长。如果你觉得看视频浪费时间,可以直接阅读源码:goframe v2版本集成gtokengoframe v1版本集成gtokengoframe v2版本集成jwtgoframe v2版本session登录官方调用示例文档jwt和sess
【Android App】实战项目之仿微信的私信和群聊App(附源码和演示视频 超详细必看)
用Android Studio的VideoView组件实现简单的本地视频播放器。本文将讲解如何使用Android视频播放器VideoView组件来播放本地视频和网络视频,实现起来还是比较简单的。VideoView组件的作用与ImageView类似,只是ImageView用于显示图片,VideoView用于播放视频。...
采用MATLAB对正弦信号,语音信号进行生成、采样和内插恢复,利用MATLAB工具箱对混杂噪声的音频信号进行滤波
随着移动互联网、云端存储等技术的快速发展,包含丰富信息的音频数据呈现几何级速率增长。这些海量数据在为人工分析带来困难的同时,也为音频认知、创新学习研究提供了数据基础。在本节中,我们通过构建生成模型来生成音频序列文件,从而进一步加深对序列数据处理问题的了解。
基于yolov5+deepsort+slowfast算法的视频实时行为检测。1. yolov5实现目标检测,确定目标坐标 2. deepsort实现目标跟踪,持续标注目标坐标 3. slowfast实现动作识别,并给出置信率 4. 用框持续框住目标,并将动作类别以及置信度显示在框上
数字电子钟设计本文主要完成数字电子钟的以下功能1、计时功能(24小时)2、秒表功能(一个按键实现开始暂停,另一个按键实现清零功能)3、闹钟功能(设置闹钟以及到时响10秒)4、校时功能5、其他功能(清零、加速、星期、八位数码管显示等)前排提示:前面几篇文章介绍过的内容就不详细介绍了,可以看我专栏的前几篇文章。PS.工程文件放在最后面总体设计本次设计主要是在前一篇文章 数字电子钟基本功能的实现 的基础上改编而成的,主要结构不变,分频器将50MHz分为较低的频率备用;dig_select
1.进入官网下载OBS stdioOpen Broadcaster Software | OBS (obsproject.com)2.下载一个插件,拓展OBS的虚拟摄像头功能链接:OBS 虚拟摄像头插件.zip_免费高速下载|百度网盘-分享无限制 (baidu.com)提取码:6656--来自百度网盘超级会员V1的分享**注意**该插件必须下载但OBS的根目录(应该是自动匹配了的)3.打开OBS,选中虚拟摄像头选择启用在底部添加一段视频录制选择下面,进行录制.
Meta公司在9月29日首次推出一款人工智能系统模型:Make-A-Video,可以从给定的文字提示生成短视频。基于**文本到图像生成技术的最新进展**,该技术旨在实现文本到视频的生成,可以仅用几个单词或几行文本生成异想天开、独一无二的视频,将无限的想象力带入生活
音频信号叠加噪声及滤波一、前言二、信号分析及加噪三、滤波去噪四、总结一、前言之前一直对硬件上的内容比较关注,但是可能是因为硬件方面的东西可能真的是比较杂,而且需要渗透的东西太多了,所以学习进展比较缓慢。因为也很少有单纯的硬件学习研究,总是会伴随着各种理论需要硬件做支撑,所以还是想要慢慢接触理论学习。但是之前总找不到切入点,不知道从哪里开始,就一直拖着。最近稍微接触了一点信号处理,就用这个当作切入点,开始接触理论学习。二、信号分析及加噪信号处理选用了matlab做工具,选了一个最简单的语音信号处理方
腾讯云 TRTC 实时音视频服务体验,从认识 TRTC 到 TRTC 的开发实践,Demo 演示& IM 服务搭建。
音乐音频分类技术能够基于音乐内容为音乐添加类别标签,在音乐资源的高效组织、检索和推荐等相关方面的研究和应用具有重要意义。传统的音乐分类方法大量使用了人工设计的声学特征,特征的设计需要音乐领域的知识,不同分类任务的特征往往并不通用。深度学习的出现给更好地解决音乐分类问题提供了新的思路,本文对基于深度学习的音乐音频分类方法进行了研究。首先将音乐的音频信号转换成声谱作为统一表示,避免了手工选取特征存在的问题,然后基于一维卷积构建了一种音乐分类模型。
C++知识精讲16 | 井字棋游戏(配资源+视频)【赋源码,双人对战】
本文主要讲解如何在Java中,使用FFmpeg进行视频的帧读取,并最终合并成Gif动态图。
在本篇博文中,我们谈及了 Swift 中 some、any 关键字以及主关联类型(primary associated types)的前世今生,并由浅及深用简明的示例向大家讲解了它们之间的奥秘玄机。