swift怎么获取touch里的点

swift怎么获取touch里的点,第1张

override func touchesBegan(touches:Set, withEvent event: UIEvent) {

if let brush = selfbrush {

brushlastPoint = nil

//之前一直是用这个方法来获取的

//brushbeginPoint = touchesanyObject()!locationInView(self)

//现在上面那个touches里面没有anyObject()这个方法,所以我们需要做类型转换

brushbeginPoint = (touches as NSSet)anyObject()!locationInView(self)

}

只要这么做就不会再浪费更多美好的生命在处理这件事情上,如下所示

Swift 1x

Swift 2x

Swift 3x

可以使用这里提供的多个变量来组成多种日期组件: >

UserDefaults 适合存储轻量级的本地客户端数据,这是一种常见的数据持久化方式。(建议:如果是存储大批量的数据不要使用这个方法)

这个方法可以基于iCloud做跨设备的UserDefaults数据存储,参考 NSUbiquitousKeyValueStore

这个方法可以获得当前App存储的所有UserDefaults数据

这个通知可以在UserDefault发生改变时发出。可以考虑当这个通知发生时全局进行同步数据。 UserDefaultsdidChangeNotification

在iOS7或者7以下,一般只会在app返回background的时候才会保存数据到disk,但是iOS8以及以上之后app都会在极其短的周期内去保存数据,除非极其频繁且大规模地进行写入的 *** 作,一般而言都会在可接受的时间内完成这项 *** 作。

在iOS8以及以上,读数据大约需要05微妙的时间,但是写入数据需要10倍左右的时间,需要将key-valu通过 NSPropertyListSerialization 转化成plist data

总而言之,iOS8以及以上的系统内不太建议使用 synchronize() 方法

enum for Keys used to store data

Save in UserDefaults where you want

Retrieve data anywhere in app

Remove Values

利用UserDefaults我们可以方便地存取一些简单的资料,然而当我们存取的资料类型是Int,Bool,Float,Double时,却会遇到一个特别的问题。因为她们回传的类型不是optional,所以不会返回nil,而是一个预设的值,比如0,false之类。可能我们存在一些需求,希望没有存储值时返回nil,那么有两种方式可以解决这个问题。

这个方法的返回值是不可选的,会有默认值

更多参考:

有些是返回可选类型的

使用register(defaults:)设定找不到key对应的value时回传的预设值,比如nil

register设定的内容是暂存的,并没有存档,所以每次App启动时都要再设定一次。(并且没有设为nil这种 *** 作,设为nil意味着取消该项的设置,后面取值时依旧会采用默认值)

通过回传Any的 object(forKey:) 搭配 as 转型判断

这个方法返回值是可选的

比如:

由于回传的类型是Any,所以找不到key number对应的value时会回传nil

参考链接: UserDefaults预设值

value(forKey:) 是KVC的语法,它并不是一个UserDefaults的直接方法。所以最好不要在 UserDefaults

Never use value(forKey:) on UserDefaults or Dictionary or any other class unless you have a clearly understood need to use key-value coding to get the desired result

When you don't have such a need, use the standard access methods provided by UserDefaults object(forKey:)

再补充一点:

The value(forKey:) is not a UserDefaults-only method It is enabled by the NSKeyValueCoding , which, According to Apple's Documentation

NSKeyValueCoding is an informal protocol that objects adopt to provide indirect access to their properties When an object is key-value coding compliant, its properties are addressable via string parameters through a concise, uniform messaging interface

It happens that UserDefaults is NSKeyValueCoding compliant, so people have started (not necessarily in the correct way) using it for accessing UserDefaults

简而言之,UserDefaults也是遵循了 NSKeyValueCoding 协议的,所以使用 value(forKey:) 也是可以获取到数据,但是不建议这种用法。在 UserDefaults 里面最好使用 object(forKey:) ,这是标准用法

参考链接: 在UserDefaults中object(forKey:)和value(forKey:)的区别

NSUserDefaults — A Swift Introduction

[NSUserDefaults synchronize] is Planned to be Deprecated

以上大多是一些需要注意的问题。关于Swift的常见用法,已经有很多博客在详述了,可以参考: Swift:UserDefaults协议(Swift视角下的泛字符串类型API)

以上就是关于swift怎么获取touch里的点全部的内容,包括:swift怎么获取touch里的点、如何使用 Swift 获取 NSDate() 的当前年、月、日、Swift下UserDefaults的常见使用和注意事项等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9538556.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-29
下一篇 2023-04-29

发表评论

登录后才能评论

评论列表(0条)

保存