- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 xcode 新手,我遇到了这个问题,当我尝试点击进入 DetailViewcontroller 的单元格并出现错误时,应用程序崩溃并给出此错误:* 由于未捕获的异常而终止应用程序' NSInvalidArgumentException',原因:'-[__NSCFDictionaryExercise]:无法识别的选择器发送到实例 0x8ca15b0'。我不确定是什么原因。我在这里复制了代码:
MAsterViewcontroller.h
#import <UIKit/UIKit.h>
@interface MasterViewController : UITableViewController{
NSMutableArray* routines_;
NSMutableArray *routineinfo_;
}
@property (nonatomic,retain)NSMutableArray* routines;
@property (nonatomic,retain)NSMutableArray* routineinfo;
@end
文件MasterViewController.m
#import "MasterViewController.h"
#import "ClassDetailViewController.h"
#import "ClassConstants.h"
@implementation MasterViewController
@synthesize routines=routines_,routineinfo=routineinfo_;
- (void)awakeFromNib
{
[super awakeFromNib];
}
- (void)viewDidLoad
{
[super viewDidLoad];
NSString *path = [[NSBundle mainBundle] pathForResource:@"Mills" ofType:@"plist"];
routines_= [[NSMutableArray alloc] initWithContentsOfFile:path];
//Uncomment the following line to displa an Edit button in the navgation bar for this view controller.
self.navigationItem.leftBarButtonItem = self.editButtonItem;
}
- (void)dealloc {
[routines_ release];
[routineinfo_ release];
[super dealloc];
}
- (void)insertNewObject:(id)sender
{
// if (!_objects) {
// _objects = [[NSMutableArray alloc] init];
// }
// [_objects insertObject:[NSDate date] atIndex:0];
// NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
// [self.tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
}
#pragma mark - Table View
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
//Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return [self.routines count];
}
//Configure appearence of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
//Configure the cell.
cell.textLabel.text = [[self.routines objectAtIndex:indexPath.row]
objectForKey:NAME_KEY];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
}
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
// Return NO if you do not want the specified item to be editable.
return YES;
}
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([[segue identifier] isEqualToString:@"showDetail"]) {
// Get the data given the selected row
NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
NSInteger IndexSelected=[indexPath row];
//NSDictionary *routinedata = [self->routines_ objectAtIndex:[indexPath row]];
// Pass that data on to the DetailViewController
DetailViewController *detailVC = segue.destinationViewController;
NSString *pathSelected=@"";;
switch (IndexSelected)
{
case 0:
pathSelected = [[NSBundle mainBundle] pathForResource:@"Mills0" ofType:@"plist"];
break;
case 1:
pathSelected = [[NSBundle mainBundle] pathForResource:@"Mills1" ofType:@"plist"];
break;
case 2:
pathSelected = [[NSBundle mainBundle] pathForResource:@"Mills2" ofType:@"plist"];
break;
default:
break;
}
routineinfo_= [[NSMutableArray alloc] initWithContentsOfFile:pathSelected];
detailVC.routineinfo = self.routineinfo;
}
}
@end
#import <UIKit/UIKit.h>
@interface DetailViewController : UITableViewController{
@private
NSMutableArray *routineinfo_;
}
@property (nonatomic, retain) NSMutableArray *routineinfo;
@end
ClassDetailViewController.h
#import <UIKit/UIKit.h>
@interface DetailViewController : UITableViewController{
@private
NSMutableArray *routineinfo_;
}
@property (nonatomic, retain) NSMutableArray *routineinfo;
@end
ClassDetailViewController.m文件
#import "ClassDetailViewController.h"
#import "ClassConstants.h"
#import "MillsDetailsConstant.h"
#import "LesMillsCell.h"
@implementation DetailViewController
@synthesize routineinfo=routineinfo_;
- (void) dealloc {
[super dealloc];
[routineinfo_ release];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return [self.routineinfo count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"LesMillsCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
LesMillsCell *LesMillsCell=self.routineinfo [indexPath.row];
//Configure the cell EXERCISE
LesMillsCell.Exercise.text= [[self.routineinfo objectAtIndex:indexPath.row]
objectForKey:EXERCISE_KEY];
//Configure the cell SONG
LesMillsCell.Title.text= [[self.routineinfo objectAtIndex:indexPath.row]
objectForKey:SONG_KEY];
//Configure the cell ARTIST
LesMillsCell.Artist.text= [[self.routineinfo objectAtIndex:indexPath.row]
objectForKey:ARTIST_KEY];
//Configure the cell TIME
LesMillsCell.Artist.text= [[self.routineinfo objectAtIndex:indexPath.row]
objectForKey:TIME_KEY];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
}
//Configure appearence of table view cells.
- (void) viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
//setto la sezione
// NSInteger nSection;
// setto le righe per sezione
// NSInteger nRows;
// nRows= [self.tableView numberOfRowsInSection:1];
// creo una cella prptotypes per ogni riga della sezione
// NSIndexPath IndexTableView
// nRows=self.tableView
}
@end
子类文件 LesMillsCell.h
#import <UIKit/UIKit.h>
@interface LesMillsCell : UITableViewCell{
@private
// UITableViewCell *lesmillscell_;
UILabel *Exercise_;
UILabel *Title_;
UILabel *Artist_;
UILabel *Time_;
NSMutableArray *routineinfo_;
}
@property (nonatomic, retain) IBOutlet UILabel *Exercise;
@property (nonatomic, retain) IBOutlet UILabel *Title;
@property (nonatomic, retain) IBOutlet UILabel *Artist;
@property (nonatomic, retain) IBOutlet UILabel *Time;
@end
LesMillsCells.m
#import "LesMillsCell.h"
#import "ClassConstants.h"
#import "MillsDetailsConstant.h"
@implementation LesMillsCell
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Initialization code
}
return self;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end
谢谢你的帮助!
最佳答案
如果崩溃发生在这一行:
LesMillsCell.Exercise.text= [[self.routineinfo objectAtIndex:indexPath.row] objectForKey:EXERCISE_KEY];
这意味着LesMillsCell不是LesMillsCell类的对象,而是NSDictionary(或__NSCFDictionary)。因此,在该对象上使用Exercise会导致错误,因为字典不支持该方法。错误从这里开始:
LesMillsCell *LesMillsCell=self.routineinfo [indexPath.row];
self.routineinfo [indexPath.row] 返回类型为 id 的对象,因此编译器无法知道该类型实际上是什么类型,因此赋值会在没有警告的情况下进行。
此外,您还以两种不同的方式使用routineinfo。首先你把它当作 LesMillsCell
LesMillsCell *LesMillsCell=self.routineinfo [indexPath.row];
下面的一行将其视为字典,并提取 EXERCISE_KEY 的值:
[[self.routineinfo objectAtIndex:indexPath.row]
objectForKey:EXERCISE_KEY];
关于ios - 由于未捕获的异常 'NSInvalidArgumentExceptioneason: ' -[__NSCFDictionary 练习] : unrecognized selector 而终止应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21076873/
我想知道这两者之间有什么不同 .myClass/DomElement .myotherclassinsidethatelement 和 .myClass/DomElement > .myothercl
使用 jQuery on() 版本 1.7。我通常这样绑定(bind)我的事件: $(".foo").on("click", function() { console.log("foo cli
我想找到与选择器匹配的所有元素,但如果它已经包含在匹配元素中则不查找。 $('#container').find('.child').not('.child .child'); 请注意,.child
我有一个看起来像这样的无序列表,但更广泛: Parent Category 2 Parent Category 2 Parent Category 3
这个问题在这里已经有了答案: CSS negation pseudo-class :not() for parent/ancestor elements (2 个答案) 关闭 4 年前。
我希望使用 CSS :not() 来定位 before 选择器。这可能吗? 示例: https://jsfiddle.net/uuq62b8d/ a.button:before { content
这有什么区别: $.each($('#myTable input[name="deleteItem[]"]:checked').do_something()); 还有这个: $('#myTable i
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我正在使用 UL LI 列表和 jQuery 创建一棵树。我使用了 jQuery 选择器 jQuery(li:has(ul)) 查找所有具有子节点的列表节点,然后向其添加单击事件。 jQuery(li
我真的不知道如何命名这两种方法,所以请原谅我这样调用它们。 字符串选择器 $("#myList li").eq(3); 函数选择器 $("#myList li:eq(3)"); 据我所知,他们都做同样
我有以下代码: .. 我正在使用以下 CSS 来排除具有“main-l tbl”类的表: table:not(.main-l .views-table) { .. } 我注
这个问题已经有答案了: 已关闭12 年前。 Possible Duplicate: What is the difference between $ and jQuery 我注意到使用“jQuery(
我有许多 css 选择器和许多选择器异常,所以我使用 :not 将它们排除在外... 示例(只是一些我不需要的选择器): [class*="-dashboard-"]:not([class$="-bi
CADisplayLink 有这个方法是有道理的,但我很好奇为什么 UIScreen 也会有它。 最佳答案 文档说屏幕提供的显示链接与该屏幕相关联。但是,查看官方文档,与任何屏幕都没有明显的关系;显示
我在这里阅读了关于 toArray() 的文档,并在控制台中对其进行了测试。我找不到在选择器上调用 toArray() 和调用选择器本身之间的区别。 两种方式都得到了完全相同的结果,这是一个与选择器匹
我有一个问题,为什么这两个代码片段不同。 $('#ctl00_DDMenu1_HyperLink1') //jQuery(a#ctl00_DDMenu1_HyperLink1 Default.asp
我想通过以下方式模拟我可以在 jQuery 中实现的目标$('.someClass:not(.hidden)') 我试过下面的代码。 $crawler->filter('someClass:not(.
这个问题不太可能对任何 future 的访客有帮助;它只与一个较小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于全世界的互联网受众。如需帮助使此问题更广泛适用,visit the
我想通过以下方式模拟我可以在 jQuery 中实现的目标$('.someClass:not(.hidden)') 我试过下面的代码。 $crawler->filter('someClass:not(.
我想根据 Iterator::next 中当前枚举变体的某些属性更改枚举变体。我有两次尝试,都没有编译: enum Test { A(Vec), B, } impl Iterator
我是一名优秀的程序员,十分优秀!