首页 > 代码库 > UXYInjectio
UXYInjectio
UXYInjectio
UXYInjectio can use Protocol to share data that data has been autosaved.
点击打开链接
How To Use
- creat a Protocol (inherit UXYinjectioProtocol), define the property in that Protocol
- let the class support Protocol
- call method sharedWithSuiteName to bind a suite name
- this data is autosaved
@protocol AppConfigData <UXYinjectioProtocol>
@property (nonatomic, strong) NSString *version;
@end
@interface AppConfig : NSObject <AppConfigData>
@end
{
AppConfig *config = [[AppConfig alloc] init];
[config bindInjectioWithSuiteName:@"user1"];
config.version = @"1.1";
}
{
AppConfig *config = [[AppConfig alloc] init];
[config bindInjectioWithSuiteName:@"user1"];
NSLog(@"config\n");
NSLog(@"%@\n", config.version);
}
The value parameter can be only property list objects: NSData, NSString, NSNumber, NSDate, NSArray, or NSDictionary. For NSArray and NSDictionary objects, their contents must be property list objects.
@protocol PeopleData <UXYinjectioProtocol>
@property (nonatomic, assign) float height2;
@property (nonatomic, assign) int age3;
@property (nonatomic ,assign) BOOL isAlive;
@property (nonatomic, copy) NSString *name;
@end
@protocol ManData <UXYinjectioProtocol>
@property (nonatomic, strong) NSArray *nicknames;
@property (nonatomic, strong) NSDictionary *books;
@end
You can use any instance with any Protocol. The same suite name is same data.
@interface Man : NSObject <ManData, PeopleData>
@end
{
People *people = [[People alloc] init];
[people bindInjectioWithSuiteName:@"bill"];
people.name = @"name";
Man *man = [[Man alloc] init];
[man bindInjectioWithSuiteName:@"bill"];
NSLog(@"%@\n", man.name);
}
You can use different suite name to distinguish the data.
AppConfig *config = [[AppConfig alloc] init];
[config bindInjectioWithSuiteName:@"user1"];
config.version = @"1.1";
config = [[AppConfig alloc] init];
[config bindInjectioWithSuiteName:@"user2"];
config.version = @"1.2";
UXYInjectio is based on NSUserDefaults. Call method immediatelySaveInjectio to synchronize.When the app enters the background it will be called automatically..
UXYInjectio
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。