美文网首页开发锦集iOSIOS-Excel
iOS -DHlibxls读取Excel数据:下载链接及配置步骤

iOS -DHlibxls读取Excel数据:下载链接及配置步骤

作者: 沉默的鱼sunny | 来源:发表于2016-08-17 15:49 被阅读1442次

刚做完使用DHlibxls读取Excel数据,结果花了好多积分下载下来的还是报各种错误,分享一下修改过程中的经验。
DHlibxls下载链接http://vdisk.weibo.com/s/aOwSyvKoljIp8
1.先将项目中重复的和不存的库文件删除,注意libDHxlsReaderiOS.a不用删除

1.png

2.添加库文件:需要使用后缀为.dylib的文件,具体添加步骤如下:
Link Binary With Libraries点击+ ,然后选择Add Other


2.png

然后点击command + shift + G 在输如框中输入/usr/lib


3.png
然后选择需要的库文件
8FB15BB8-3E4E-49F0-8B36-B3BF80B02D40.png
NSString *path = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"test.xls"];
//  NSString *path = @"/tmp/test.xls";

    // xls_debug = 1; // good way to see everything in the Excel file
    
    DHxlsReader *reader = [DHxlsReader xlsReaderFromFile:path];
    assert(reader);

    NSString *text = @"";
    
    text = [text stringByAppendingFormat:@"AppName: %@\n", reader.appName];
    text = [text stringByAppendingFormat:@"Author: %@\n", reader.author];
    text = [text stringByAppendingFormat:@"Category: %@\n", reader.category];
    text = [text stringByAppendingFormat:@"Comment: %@\n", reader.comment];
    text = [text stringByAppendingFormat:@"Company: %@\n", reader.company];
    text = [text stringByAppendingFormat:@"Keywords: %@\n", reader.keywords];
    text = [text stringByAppendingFormat:@"LastAuthor: %@\n", reader.lastAuthor];
    text = [text stringByAppendingFormat:@"Manager: %@\n", reader.manager];
    text = [text stringByAppendingFormat:@"Subject: %@\n", reader.subject];
    text = [text stringByAppendingFormat:@"Title: %@\n", reader.title];
    
 
    text = [text stringByAppendingFormat:@"\n\nNumber of Sheets: %u\n", reader.numberOfSheets];

#if 0
    [reader startIterator:0];
    
    while(YES) {
        DHcell *cell = [reader nextCell];
        if(cell.type == cellBlank) break;
        
        text = [text stringByAppendingFormat:@"\n%@\n", [cell dump]];
    }
#else
    int row = 2;
    while(YES) {
        DHcell *cell = [reader cellInWorkSheetIndex:0 row:row col:2];
        if(cell.type == cellBlank) break;        
        DHcell *cell1 = [reader cellInWorkSheetIndex:0 row:row col:3];
        NSLog(@"\nCell:%@\nCell1:%@\n", [cell dump], [cell1 dump]);
        row++;
        
        //text = [text stringByAppendingFormat:@"\n%@\n", [cell dump]];
        //text = [text stringByAppendingFormat:@"\n%@\n", [cell1 dump]];
    }
#endif

| |
| |


按照上面的这个教程修改的出现了问题

Skipped '.'
svn: E155007: None of the targets are working copies
Command /bin/sh failed with exit code 1

而且之前的DHlibxls下载地址不能下载了,下面是git的一个下载地址
https://github.com/dhoerl/DHlibxls
这个下载下来之后会报各种错误,以下是修改步骤。
1.先将项目中重复的和不存的库文件删除,.a文件不用管。
2.将缺少的文件添加。
3.targets -> build settings -> architectures -> build active architecture only -> debug 改成YES 。
完成以上步骤即可运行。
demo下载地址:https://gitee.com/bridgeworld/DHlibxls

相关文章

网友评论

  • WARRON:想单独把 DHxlsReader运行为啥不行呢
  • 九剑仙:非常赞
  • 沉默的鱼sunny:之前写的不能运行了,重新看了看,等下发链接。
  • 伊织随意写:还是报了 #import "xls.h"
    沉默的鱼sunny:缺少文件,现在把文件添加进去了。
  • 伊织随意写:http://vdisk.weibo.com/s/aOwSyvKoljIp8

    文件审核中,看不了,可以的话放到git 吧 :relaxed:
  • paydrin:按照你这样的操作处理,发现并不行。项目还是无法运行
    沉默的鱼sunny:写这个文章的时候测试了是可以的,可能是更新之后又有新的问题了!
  • KyleLou:都没有报错?
    沉默的鱼sunny:可能是更新之后又出新的问题了吧!
  • 24a63d38f8b9:看了这个文章 ,终于搞定了 ,感谢
    KyleLou:都没有报错?开始就报错,怎么解决?Skipped '.'
    svn: E155007: None of the targets are working copies
    Command /bin/sh failed with exit code 1
    KyleLou:都没有报错?开始就报错,怎么解决?Skipped '.'
    svn: E155007: None of the targets are working copies
    Command /bin/sh failed with exit code 1

本文标题:iOS -DHlibxls读取Excel数据:下载链接及配置步骤

本文链接:https://www.haomeiwen.com/subject/dgvmsttx.html