Description &&debugDescription && runtime(debug模式下調試model),describe

來源:互聯網
上載者:User

Description &&debugDescription && runtime(debug模式下調試model),describe
description

在開發過程中, 往往會有很多的model來裝載屬性. 而在開發期間經常會進行調試查看model裡的屬性值是否正確. 那麼問題來了, 在objective-c裡使用NSLog("%@",model)這行代碼列印出來的卻是model的地址. 不是我們所想要的結果~! 看圖:

那麼問題又來了?有沒有辦法解決這個問題尼,答案那就是有~!只需要重寫- (NSString *)description方法即可。如下代碼:

.h檔案
#import <Foundation/Foundation.h>@interface TestModel : NSObject@property (copy,nonatomic) NSString *text;@property (assign,nonatomic) NSInteger index;@end
.m檔案
#import "TestModel.h"@implementation TestModel- (NSString *)description {    return [NSString stringWithFormat:@"text:%@--index:%zi",self.text,self.index];}@end

然後這時候在使用NSLog("%@",model)這行代碼就能列印我們想要的結果了。 看如:

那麼問題繼續來了...
如果model裡有N多個屬性尼, 可能10個, 可能20個... 難道要在description方法裡一個一個寫屬性並拼接返回? 你不嫌麻煩, 我光看著都蛋疼了... 所以我們可以採用runtime技術來動態擷取屬性並返回. 如下修改後的.m檔案代碼: 

修改後的.m檔案
#import "TestModel.h"#import <objc/runtime.h>//匯入runtime標頭檔@implementation TestModel- (NSString *)description {    //初始化一個字典    NSMutableDictionary *dictionary = [NSMutableDictionary dictionary];    //得到當前class的所有屬性    uint count;    objc_property_t *properties = class_copyPropertyList([self class], &count);    //迴圈並用KVC得到每個屬性的值    for (int i = 0; i<count; i++) {        objc_property_t property = properties[i];        NSString *name = @(property_getName(property));        id value = [self valueForKey:name]?:@"nil";//預設值為nil字串        [dictionary setObject:value forKey:name];//裝載到字典裡    }    //釋放    free(properties);    //return    return [NSString stringWithFormat:@"<%@: %p> -- %@",[self class],self,dictionary];}@end

然後在列印model, 如:


這裡寫圖片描述

 

debugDescription

現在問題繼續來了..
在項目中NSLog語句往往也很多. 如果重寫description方法. 在控制台則會列印出很多屬性. 看著就不舒服~~而且還有一個問題就是, 有時候我們其實並不需要列印model的屬性.. 那這樣重寫description方法反而適得其反了! 所有, 現在有一個解決方案就是重寫debugDescription方法

什麼是debugDescription? 其實debugDescriptiondescription是一樣的效果. 只不過唯一的區別就是debugDescription是在Xcode控制台裡使用po命令的時候調用的~!

debugDescription的實現其實也就是調用了description方法而已

so, 在開發過程中並且model調試的時候, 筆者推薦重寫debugDescription方法而不是重寫description方法. 當需要列印model的屬性的時候, 在控制台裡使用po命令即可. 如下在此修改後的.m檔案

#import "TestModel.h"#import <objc/runtime.h>//匯入runtime標頭檔@implementation TestModel// 重寫debugDescription, 而不是description- (NSString *)debugDescription {    //聲明一個字典    NSMutableDictionary *dictionary = [NSMutableDictionary dictionary];    //得到當前class的所有屬性    uint count;    objc_property_t *properties = class_copyPropertyList([self class], &count);    //迴圈並用KVC得到每個屬性的值    for (int i = 0; i<count; i++) {        objc_property_t property = properties[i];        NSString *name = @(property_getName(property));        id value = [self valueForKey:name]?:@"nil";//預設值為nil字串        [dictionary setObject:value forKey:name];//裝載到字典裡    }    //釋放    free(properties);    //return    return [NSString stringWithFormat:@"<%@: %p> -- %@",[self class],self,dictionary];}@end

看如, 分別使用了NSLogpo命令的列印


這裡寫圖片描述

結果:


這裡寫圖片描述

這就達到了我們想要的效果, 如果需要列印model的屬性, 打個斷點然後使用po命令即可

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.