当前位置 : 主页 > 手机开发 > 其它 >

单例类变量在swift中?

来源:互联网 收集:自由互联 发布时间:2021-06-11
参见英文答案 Using a dispatch_once singleton model in Swift30个 我正在尝试创建一个Singleton类,我想在其中创建一个UIImage实例. 在Objective-C中 我们可以简单地在.h中声明一个属性 @property (nonatomic,
参见英文答案 > 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/

网友评论