iOS keyValue方法的使用
//TZPerson是普通的繼承自NSObject的類
TZPerson.h
#import <Foundation/Foundation.h>
@interface TZPerson : NSObject
@property (nonatomic, strong) NSString* name;
@property (nonatomic, assign) int age;
@property (nonatomic, strong) NSString* nick;
@property (nonatomic, assign) float height;
@end
TZPerson.m
@implementation TZPerson
// 賦值key值不存在
- (void) setValue:(id)value forUndefinedKey:(NSString *)key {
NSLog(@"key = %@值不存在 ", key);
}
@end
//在外部view中使用keyValue 來呼叫TZPerson的屬性
ViewController.m
/// KVC字典操作
- (void) dictionaryTest {
TZPerson* p = [TZPerson new];
NSDictionary* dict = @{
@"name":@"Tom",
@"age":@18,
@"nick":@"Cat",
@"height":@180,
@"dd":@"helo"
};
//根據字典裡的key給P物件賦對應的value值
[p setValuesForKeysWithDictionary:dict];
NSLog(@"p.name = %@, p.age = %d, p.nick =%@, p.height = %f", p.name, p.age, p.nick, p.height);
NSArray* keys = @[@"name", @"age"];
NSDictionary* dict1 = [p dictionaryWithValuesForKeys:keys];
NSLog(@"%@", dict1);
}
/// KVC訊息傳遞 array
- (void) arrayKVCTest {
/*對陣列而言,valueForKey方法的作用是把valueForKey的引數以訊息的方式傳送給陣列的每一個元素*/
NSArray* arr = @[@"Monday", @"Tuesday", @"Wednesday"];
//獲取arr陣列中每一個元素的length屬性並返回一個陣列
NSArray* lengthArr = [arr valueForKey:@"length"];
NSLog(@"%@", lengthArr);
//arr陣列中每一個元素執行lowercaseString方法並結果返回給lowercaseArr陣列
NSArray* lowercaseArr = [arr valueForKey:@"lowercaseString"];
NSLog(@"%@", lowercaseArr);
}
/// 聚合操作符 @avg、@count、@max、@min、@sum
- (void) contrainerTest {
NSMutableArray* students = [NSMutableArray array];
for (int i = 0; i < 6; i++) {
TZPerson* student = [TZPerson new];
NSDictionary* dict = @{
@"name":@"Tom",
@"age":@(18+i),
@"nick":@"Cat",
@"height":@(1.65 + 0.02*arc4random_uniform(6)),
};
[student setValuesForKeysWithDictionary:dict];
[students addObject:student];
}
NSLog(@"%@", [students valueForKey:@"height"]);
/// 平均身高, @avg是獲取平均值的聚合運算子,其他的以此類推
float avg = [[students valueForKeyPath:@"@avg.height"] floatValue];
NSLog(@"%f", avg);
}
/// 陣列操作符 @distinctUnionOfObjects @unionOfObjects
- (void) contrainerArrayTest {
NSMutableArray* students = [NSMutableArray array];
for (int i = 0; i < 6; i++) {
TZPerson* student = [TZPerson new];
NSDictionary* dict = @{
@"name":@"Tom",
@"age":@(18+i),
@"nick":@"Cat",
@"height":@(1.65 + 0.02*arc4random_uniform(6)),
};
[student setValuesForKeysWithDictionary:dict];
[students addObject:student];
}
NSLog(@"%@", [students valueForKey:@"height"]);
//distinctUnionOfObjects陣列中去重
NSArray* arr = [students valueForKeyPath:@"@distinctUnionOfObjects.height"];
NSLog(@"arr = %@", arr);
//unionOfObjects不去重
NSArray* arr1 = [students valueForKeyPath:@"@unionOfObjects.height"];
NSLog(@"arr1 = %@", arr1);
}
相關文章
- 源自於NEO的KeyValue 資料庫面世啦資料庫
- iOS教程 免費使用SMSSDK語音驗證的方法iOS
- XCODE6中使用iOS7 SDK的方法XCodeiOS
- iOS Masonry 一些日常使用方法iOS
- iOS · WCDB的使用iOS
- 遍歷登錄檔某鍵下的所有子鍵及其KeyValue
- iOS NSString中實用的方法iOS
- iOS藍芽開發CoreBlueTooth庫核心方法使用介紹iOS藍芽
- iOS常見的幾種加密方法iOS加密
- 提高iOS App開發效率的方法iOSAPP
- iOS動態庫的使用iOS
- iOS CocoaPods使用iOS
- iOS 陣列中那些實用的方法iOS陣列
- Swift iOS : WebView快取圖片的方法SwiftiOSWebView快取
- Protocol Buffers 在 iOS 中的使用ProtocoliOS
- iOS 鑰匙串的基本使用iOS
- iOS開發之XLForm的使用iOSORM
- iOS中優雅的使用iconfontiOS
- iOS開發之使用Git的基本使用(二)iOSGit
- iOS開發之使用Git的基本使用(一)iOSGit
- 一起Talk IOS吧(第十四回 類中方法的定義和使用)iOS
- iOS 圖片壓縮方法iOS
- iOS 指定初始化方法iOS
- iOS 開發中 runtime 常用的幾種方法iOS
- iOS 中處理定時任務的常用方法iOS
- iOS UIPickerView使用技巧iOSUIView
- IOS動畫使用iOS動畫
- iOS AutoLayout使用技巧iOS
- iOS開發Settings.bundle的使用iOS
- iOS RAC 的使用總結 (轉載)iOS
- 【iOS開發】iOS App的加固保護原理:使用ipaguard混淆加固iOSAPP
- JavaScript如何呼叫Native iOS/Android 方法JavaScriptiOSAndroid
- iOS 常用除錯方法:LLDB命令iOS除錯LLDB
- MOBIM ios 表情鍵盤排版方法iOS
- iOS安全加固方法及實現iOS
- iOS開發- reloadData方法介紹iOS
- iOS Swift結構體與類的方法排程iOSSwift結構體
- iOS使用 xcconfig配置檔案的若干坑iOS