分享

ios 沙盒(三)

 oskycar 2013-11-15

1   NSLog(@"NSBundle:%@",[NSBundle mainBundle]);


  NSBundle:NSBundle 6.0/Applications/02D4F12B-3587-402B-A035-B9443BCCB541/abc.app> (loaded)

   2     NSLog(@"NSBundle2:%@",[[NSBundle mainBundle] resourcePath]);

 

NSBundle2:/Users/abc/Library/Application Support/iPhone Simulator/6.0/Applications/02D4F12B-3587-402B-A035-B9443BCCB541/abc.app


     NSString* abcpath = [NSString stringWithFormat:@"%@/%@",[[NSBundle mainBundle] resourcePath],@"abc.plist"];

        

        CCLOG(@"abcpath:%@",abcpath);

        abcpath:/Users/abc/Library/Application Support/iPhone Simulator/6.0/Applications/02D4F12B-3587-402B-A035-B9443BCCB541/abc.app/abc.plist

        NSDictionary *dic2 = [NSDictionary dictionaryWithContentsOfFile:abcpath];

        CCLOG(@"dic2:%@",dic2);

    dic2:{

             1 = aaa;

                2 = bbb;

               3 = ccc;

              

            }



3.    NSString *dataPath = [[NSBundle mainBundle]  pathForResource:@"abc" ofType:@"plist"];

//Users/abc/Library/Application Support/iPhone Simulator/6.0/Applications/02D4F12B-3587-402B-A035-B9443BCCB541/abc.app/abc.plist

        

        CCLOG(@"dataPath:%@",dataPath);

        

          NSDictionary *dic = [NSDictionary dictionaryWithContentsOfFile:dataPath];

        CCLOG(@"dic:%@",dic);

    dic:{

        1 = aaa;

        2 = bb

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多