- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在github上找到了ihasapp框架:https://github.com/danielamitay/iHasApp
我将这两个文件包含到项目中..但是它给出了错误:
2013-03-14 11:21:35.848 apps[4338:2203] * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[NSConcreteData initWithContentsOfFile:options:error:]: nil file argument'
这是我在 View Controller 中使用的代码:
#import "helloworldViewController.h"
#import "iHasApp.h"
@interface helloworldViewController ()
@end
@implementation helloworldViewController
- (void)viewDidLoad
{
[super viewDidLoad];
iHasApp *detectionObject = [iHasApp new];
[detectionObject detectAppDictionariesWithIncremental:^(NSArray *appDictionaries) {
NSLog(@"Incremental appDictionaries.count: %i", appDictionaries.count);
} withSuccess:^(NSArray *appDictionaries) {
NSLog(@"Successful appDictionaries.count: %i", appDictionaries.count);
} withFailure:^(NSError *error) {
NSLog(@"Failure: %@", error.localizedDescription);
}];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
我对 ios 开发真的很陌生,所以错误可能非常小/愚蠢。但任何帮助都会很棒!
最佳答案
作者在这里:
iHasApp
正在内部询问资源项的文件路径,该文件路径返回 nil
。然后,它使用 nil
参数发出 NSData
请求。
修复已推送至 GitHub。
关于ios - ihasapp 获取 ios 上已安装应用程序的列表并给出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15403094/
我有一个经典的 ASP 页面 (VBscript),它在服务器端生成 XML,然后 Response.Writes。该页面根本没有客户端。 但是我需要将其转换为 JSON。由于我找不到有效的 ASP
我想从客户端应用程序的 HDFS 中读取特定的 SequenceFile。我可以使用 SequenceFile.Reader 来做到这一点,它工作正常。但是是否也可以通过分析抛出的 IOExcepti
我是一名优秀的程序员,十分优秀!