单例类变量在swift中?

单例类变量在swift中?,第1张

概述参见英文答案 > Using a dispatch_once singleton model in Swift                                    30个 我正在尝试创建一个Singleton类,我想在其中创建一个UIImage实例. 在Objective-C中 我们可以简单地在.h中声明一个属性 @property (nonatomic,strong)UIIma 参见英文答案 > Using a dispatch_once singleton model in Swift                                    30个
我正在尝试创建一个Singleton类,我想在其中创建一个UIImage实例.

在Objective-C中

我们可以简单地在.h中声明一个属性

@property (nonatomic,strong)UIImage *pic;

并在.m中定义sharedSingleton方法

+(SingletonClass*)sharedSingleton{  @synchronized(self){   if (!sharedSingleton) {       sharedSingleton=[[SingletonClass alloc]init];   }   return sharedSingleton;}}

和来自任何一个班级的电话

[SingletonClass sharedSingleton].pic

我从最近2个小时搜索,但没有找到蚂蚁合适的教程来创建这个.请帮我在swift中创建一个单例类,并告诉我如何调用实例变量.

解决方法 它非常简单快捷

class SharedManager {   static let sharedInstance = SharedManager()   var pic = UIImage()}

并访问它

SharedManager.sharedInstance.pic = UIImage(named: "imagename")!

这是关于单身人士的非常好的指南

https://github.com/hpique/SwiftSingleton
https://thatthinginswift.com/singletons/

总结

以上是内存溢出为你收集整理的单例类变量在swift中?全部内容,希望文章能够帮你解决单例类变量在swift中?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

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

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

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存