大家来找茬,眼神交流找bug - V2EX
V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
iOS 开发实用技术导航
NSHipster 中文版
http://nshipster.cn/
cocos2d 开源 2D 游戏引擎
http://www.cocos2d-iphone.org/
CocoaPods
http://cocoapods.org/
Google Analytics for Mobile 统计解决方案
http://code.google.com/mobile/analytics/
WWDC
https://developer.apple.com/wwdc/
Design Guides and Resources
https://developer.apple.com/design/
Transcripts of WWDC sessions
http://asciiwwdc.com
Cocoa with Love
http://cocoawithlove.com/
Cocoa Dev Central
http://cocoadevcentral.com/
NSHipster
http://nshipster.com/
Style Guides
Google Objective-C Style Guide
NYTimes Objective-C Style Guide
Useful Tools and Services
Charles Web Debugging Proxy
Smore
tane05
V2EX    iDev

大家来找茬,眼神交流找bug

  •  
  •   tane05 2013-08-12 22:53:56 +08:00 3287 次点击
    这是一个创建于 4520 天前的主题,其中的信息可能已经有所发展或是发生改变。
    概要:
    先谢过各位走过路过的V友。本人模仿AFNetWorking的Demo写了非ARC的Demo,结果有内存bug,以下为主要代码,忘大神们点拨下。

    rootVC.h中申明
    @property (copy, nonatomic) NSMutableArray *dataSource;

    rootVC.h中请求数据
    - (void)requestJsonData
    {
    // NSString *therUrl = [NSString stringWithFormat:@"%@GetTestInfo.php",BaseURLString];
    NSURL *url = [NSURL URLWithString:BaseURLString];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];

    AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {

    NSDictionary *tmpDic= (NSDictionary *)JSON;
    NSDictionary *dic =[tmpDic valueForKey:@"data"];
    NSArray *wetherArray = [dic valueForKey:@"weather"];
    NSMutableArray *dataSourceArray = [NSMutableArray arrayWithCapacity:[wetherArray count]];
    for (NSDictionary *item in wetherArray) {
    RootViewCellModel *metaData = [[RootViewCellModel alloc] initWithAttributes:item];
    [dataSourceArray addObject:metaData];
    [metaData release];
    }
    self.dataSource = dataSourceArray;
    [self.tableView reloadData];

    } failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {
    NSString *errorInfo = [NSString stringWithFormat:@"%@",error];
    NSLog(@"%@",error);

    UIAlertView *av = [[UIAlertView alloc] initWithTitle:@"Error Retrieving Weather"
    message:[NSString stringWithFormat:@"%@",error]
    delegate:nil
    cancelButtonTitle:@"OK" otherButtonTitles:nil];
    [av show];
    }];
    [operation start];
    }


    metaData.h 中声明
    @interface metaData : NSObject
    @property (nonatomic, copy) NSString *projectName;
    @property (nonatomic, copy) NSString *addDec;
    @property (nonatomic, copy) NSString *price;
    @property (nonatomic, copy) NSString *tel;
    @property (nonatomic, copy) NSString *imageURLString;
    - (id)initWithAttributes:(NSDictionary *)attributes;
    @end

    重点来了
    metaData.m实现
    @implementation RootViewCellModel
    - (void)dealloc
    {
    [_projectName release];
    [_addDec release];
    [_price release];
    [_tel release];
    [_imageURLString release];
    [super dealloc];
    }

    - (id)initWithAttributes:(NSDictionary *)attributes {
    self = [super init];
    if (self) {

    NSString *tmp= nil;
    tmp = [attributes valueForKey:@"date"];
    NSLog(@"tmp retainCount %d",[tmp retainCount]);
    _projectName = [NSString stringWithString:tmp];
    NSLog(@"tmp retainCount %d",[tmp retainCount]);

    tmp = [attributes valueForKey:@"precipMM"];
    _addDec = [NSString stringWithString:tmp];
    tmp = [attributes valueForKey:@"tempMaxC"];
    _price = [NSString stringWithString:tmp];
    tmp = [attributes valueForKey:@"weatherCode"];
    _tel = [NSString stringWithString:tmp];
    }
    return self;
    }
    @end

    可能代码有点多,再次感谢看完的V友。
    第 1 条附言    2013-08-13 11:15:30 +08:00
    代码已挂上,有空的哥们指点下。https://github.com/Ezrohir/AFNetWorkingBugDemo
    6 条回复    1970-01-01 08:00:00 +08:00
    txx
        1
    txx  
    &nbs;  2013-08-13 00:22:40 +08:00   1
    弄个gist好咩 没高亮不幸福
    alexrezit
        2
    alexrezit  
       2013-08-13 08:20:45 +08:00   1
    刚接触 Objective-C 不要搞 AFNetworking 这样复杂的第三方库, 先从基础的来, 先把 getters 和 setters 理解了.
    jamesxu
        3
    jamesxu  
       2013-08-13 09:11:30 +08:00
    rootVC.h:
    <script src="https://gist.github.com/anonymous/6216927.js"></script>
    metaData.h:
    <script src="https://gist.github.com/anonymous/6216903.js"></script>
    metaData.m:
    <script src="https://gist.github.com/anonymous/6216915.js"></script>
    jamesxu
        4
    jamesxu  
       2013-08-13 09:12:42 +08:00   1
    sorry,贴得有点乱!
    tane05
        5
    tane05  
    OP
       2013-08-13 09:30:46 +08:00
    @jamesxu 谢谢帮排版!
    zhigang1992
        6
    zhigang1992  
       2013-08-13 11:18:01 +08:00
    看晕了,有些release,有些用完了又没有release。。。
    还是用ARC把,何必和自己过不去呢?
    而且在block里面最好来个weakSelf。
    关于     帮助文档     自助推广系统     博客     API     FAQ     Solana     2568 人在线   最高记录 6679       Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 29ms UTC 06:30 PVG 14:30 LAX 22:30 JFK 01:30
    Do have faith in what you're doing.
    ubao msn snddm index pchome yahoo rakuten mypaper meadowduck bidyahoo youbao zxmzxm asda bnvcg cvbfg dfscv mmhjk xxddc yybgb zznbn ccubao uaitu acv GXCV ET GDG YH FG BCVB FJFH CBRE CBC GDG ET54 WRWR RWER WREW WRWER RWER SDG EW SF DSFSF fbbs ubao fhd dfg ewr dg df ewwr ewwr et ruyut utut dfg fgd gdfgt etg dfgt dfgd ert4 gd fgg wr 235 wer3 we vsdf sdf gdf ert xcv sdf rwer hfd dfg cvb rwf afb dfh jgh bmn lgh rty gfds cxv xcv xcs vdas fdf fgd cv sdf tert sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf shasha9178 shasha9178 shasha9178 shasha9178 shasha9178 liflif2 liflif2 liflif2 liflif2 liflif2 liblib3 liblib3 liblib3 liblib3 liblib3 zhazha444 zhazha444 zhazha444 zhazha444 zhazha444 dende5 dende denden denden2 denden21 fenfen9 fenf619 fen619 fenfe9 fe619 sdf sdf sdf sdf sdf zhazh90 zhazh0 zhaa50 zha90 zh590 zho zhoz zhozh zhozho zhozho2 lislis lls95 lili95 lils5 liss9 sdf0ty987 sdft876 sdft9876 sdf09876 sd0t9876 sdf0ty98 sdf0976 sdf0ty986 sdf0ty96 sdf0t76 sdf0876 df0ty98 sf0t876 sd0ty76 sdy76 sdf76 sdf0t76 sdf0ty9 sdf0ty98 sdf0ty987 sdf0ty98 sdf6676 sdf876 sd876 sd876 sdf6 sdf6 sdf9876 sdf0t sdf06 sdf0ty9776 sdf0ty9776 sdf0ty76 sdf8876 sdf0t sd6 sdf06 s688876 sd688 sdf86