- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我收到以下错误消息,我无法理解为什么会发生这种情况,因为我没有使用任何 UIImageView。有时我会遇到同样的错误,但它是 CALayer?!?
还值得一提的是,我有 2 个 Nib 和 2 个 Controller 以及此代码所在的基本 Controller 。
编辑:
这是我的项目的结构
MainViewController 及其 Nib - Nib 中的 HomeViewController
MainViewController-Landscape 及其 Nib - HomeViewController- Nib 景观
HomeViewControllerBase - 无 Nib - 存在所有导出和项目配置代码的基类。- socket 由以下两个子类(class)使用。- socket 链接到每个主 Nib 中的控件。
HomeViewController- 继承自HomeViewControllerBase
HomeViewController-风景- 继承自HomeViewControllerBase
所以发生的事情是子类试图释放其基类(其中包含所有 socket )。我这样设计是为了避免在不同方向的 View Controller 中重复代码。
@implementation MainViewController
- (void)orientationChanged:(NSNotification *)notification
{
UIDeviceOrientation deviceOrientation = [UIDevice currentDevice].orientation;
if (UIDeviceOrientationIsLandscape(deviceOrientation) && !isShowingLandscapeView)
{
[self presentModalViewController:self.landscapeViewController
animated:YES];
isShowingLandscapeView = YES;
}
else if (UIDeviceOrientationIsPortrait(deviceOrientation) && isShowingLandscapeView)
{
[self dismissModalViewControllerAnimated:YES];
isShowingLandscapeView = NO;
}
}
- (id)init
{
self = [super initWithNibName:@"MainViewController" bundle:nil];
if (self)
{
isShowingLandscapeView = NO;
self.landscapeViewController = [[[MainViewController_Landscape alloc]
initWithNibName:@"MainViewController-Landscape" bundle:nil] autorelease];
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(orientationChanged:)
name:UIDeviceOrientationDidChangeNotification
object:nil];
}
return self;
}
@end
@implementation HomeViewControllerBase
- (void)bestSellItemTapped:(id)sender
{
NSLog(@"best sell item tapped");
}
- (void)configureBestSellItems
{
[self startRetrievingRegions];
// load all the images from our bundle and add them to the scroll view
// NSUInteger i;
for (int i = 0; i <= 150; i++)
{
UILabel *itemTitle = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 100, 50)];
itemTitle.text = @"Majorca";
UILabel *itemPrice = [[UILabel alloc]initWithFrame:CGRectMake(0, 50, 100, 50)];
itemPrice.text = @"£249";
NSString *imageName = @"tempImage.jpg";
UIImage *image = [UIImage imageNamed:imageName];
UIButton *mainButton = [[[UIButton alloc]init] autorelease];
[mainButton addTarget:self action:@selector(bestSellItemTapped:) forControlEvents:UIControlEventTouchUpInside];
[mainButton setBackgroundImage:image forState:UIControlStateNormal];
// setup each frame to a default height and width, it will be properly placed when we call "updateScrollList"
CGRect rect = mainButton.frame;
rect.size.height = kScrollObjHeight;
rect.size.width = kScrollObjWidth;
mainButton.frame = rect;
mainButton.tag = i;
[mainButton addSubview:itemTitle]; [itemTitle release];
[mainButton addSubview:itemPrice]; [itemPrice release];
[self.bestSellScrollView addSubview:mainButton];
}
[self layoutScrollImages]; // now place the photos in serial layout within the scrollview
}
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad
{
[super viewDidLoad];
[self configureBestSellItems];
}
- (void)layoutScrollImages
{
UIButton *view = nil;
NSArray *subviews = [self.bestSellScrollView subviews];
// reposition all image subviews in a horizontal serial fashion
CGFloat curXLoc = 0;
for (view in subviews)
{
if ([view isKindOfClass:[UIButton class]] && view.tag > 0)
{
CGRect frame = view.frame;
frame.origin = CGPointMake(curXLoc, 0);
view.frame = frame;
curXLoc += (kScrollObjWidth + kScrollObjPadding);
}
}
// set the content size so it can be scrollable
[self.bestSellScrollView setContentSize:CGSizeMake((150 * kScrollObjWidth),
[self.bestSellScrollView bounds].size.height)];
}
@end
@interface HomeViewController : HomeViewControllerBase
@end
@interface HomeViewController_Landscape : HomeViewControllerBase
@end
@implementation HomeViewController
- (void)dealloc
{
[super dealloc]; //When I remove this it works
}
@end
@implementation HomeViewController_Landscape
- (void)dealloc
{
[super dealloc]; //When I remove this it works
}
@end
<小时/>
-[UIImageView bestSellItemTapped:]: unrecognized selector sent to instance 0x681c2b0 2011-04-12 15:45:26.665 [21532:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIImageView bestSellItemTapped:]: unrecognized selector sent to instance 0x681c2b0'
*** Call stack at first throw: ( 0 CoreFoundation 0x00dc85a9 __exceptionPreprocess + 185 1 libobjc.A.dylib 0x00f1c313 objc_exception_throw + 44 2 CoreFoundation 0x00dca0bb -[NSObject(NSObject) doesNotRecognizeSelector:] + 187 3 CoreFoundation 0x00d39966 ___forwarding___ + 966 4 CoreFoundation 0x00d39522 _CF_forwarding_prep_0 + 50 5 UIKit 0x0001a4fd -[UIApplication sendAction:to:from:forEvent:] + 119 6 UIKit 0x000aa799 -[UIControl sendAction:to:forEvent:] + 67 7 UIKit 0x000acc2b -[UIControl(Internal)
_sendActionsForEvents:withEvent:] + 527 8 UIKit 0x000ab7d8 -[UIControl touchesEnded:withEvent:] + 458 9 UIKit 0x002ad4de
_UIGestureRecognizerSortAndSendDelayedTouches
+ 3609 10 UIKit 0x002adc53
_UIGestureRecognizerUpdateObserver + 927 11 CoreFoundation 0x00da989b
__CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__
+ 27 12 CoreFoundation 0x00d3e6e7 __CFRunLoopDoObservers + 295 13 CoreFoundation 0x00d071d7 __CFRunLoopRun + 1575 14 CoreFoundation 0x00d06840 CFRunLoopRunSpecific + 208 15 CoreFoundation 0x00d06761 CFRunLoopRunInMode + 97 16 GraphicsServices 0x010001c4 GSEventRunModal + 217 17 GraphicsServices 0x01000289 GSEventRun + 115 18 UIKit 0x00028c93 UIApplicationMain + 1160 19 0x000027a9 main + 121 20
0x00002725 start + 53 ) terminate called after throwing an instance of 'NSException'
最佳答案
当点击按钮时,此代码来自的任何 ViewController
是否仍然存在?像这样的错误(不相关的对象 - 在本例中为 UIImageView
)通常意味着您有一个指向内存中某些区域的指针,该区域已被释放并重用于其他用途(UIImageView
在这种情况下)。
将 NSLog()
打印输出添加到 View Controller 的 -dealloc 方法,并确保在点击按钮之前它不会被触发。
实际上,在 configureBestSellItems
的开头再添加一个 NSLog - NSLog(@"I am %x", self);
(是的,%x,而不是 % @)。这将打印出您的 View Controller
的地址 - 将其与崩溃对象的地址进行比较(如“无法识别的选择器发送到实例0x681c2b0” - 看看它是否打印“我最初是 0x681c2b0”)
关于iphone - 无法识别的选择器发送到实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5637203/
我正在使用 voip 推送通知制作 ios 应用程序。 我想从 Node js 发送 voip 推送通知,但不是很好。 我阅读了本教程 CallKit iOS Swift Tutorial for V
我编写了一个服务器,当浏览器尝试连接到某些站点时,它会检查黑名单并发回 404,但是当我调用 send() 时没有错误,但消息不会出现在网络上浏览器,除非我关闭连接? 有什么建议吗? 接受来自浏览器的
#include int main() { char c = getchar(); //EOF (ctrl + d ) while( ( c = getchar() ) != '?'
我正在尝试使用MailMessage对象通过PowerShell发送电子邮件。该脚本使用Import-CSV来使用文件,然后在电子邮件正文中使用ConvertTo-HTML。由于我要发送的电子邮件客户
我需要创建一个脚本,每 30 秒对网络流量进行一次采样并存储发送/接收的字节。该数据随后用于绘制图形。我编写了一个在 Windows 2012 上完美运行的程序,但我意识到某些 cmdlet 在以前的
我正在运行“autoit3.chm”文件。当它运行时,我想发送一个向下键箭头,但它不起作用: $file = FileGetShortName("C:\Users\PHSD100-SIC\Deskto
当我使用网络浏览器测试我的程序时,我可以很好地写入套接字/FD,所以我决定循环它并在连接中途切断连接,我发现了一个问题。 send() 能够在套接字不可用时关闭整个程序。我认为问题在于该程序陷入了第
我正在运行“autoit3.chm”文件。当它运行时,我想发送一个向下键箭头,但它不起作用: $file = FileGetShortName("C:\Users\PHSD100-SIC\Deskto
所以我试图向自己发送数据并接收数据然后打印它,现在我已经测试了一段时间,我注意到它没有发送任何东西,事实上,也许它是,但我没有正确接收它,我需要这方面的帮助。 这就是我用来发送数据的
问题:开发人员创建自己的序列化格式有多常见?具体来说,我使用 java 本质上将对象作为一个巨大的字符串发送,并用标记来分隔变量。 我的逻辑:我选择这个是因为它几乎消除了语言依赖性(忽略java的修改
我必须在 Linux 上编写一个应用程序,该应用程序需要与具有自定义以太网类型的设备进行通信。甚至在如何编写这样的应用程序中也有很多解决方案。一个缺点是需要 root 访问权限(AFAIK)。之后释放
我有一个包含三个单选按钮选项的表单。我需要将表单数据提交到另一个文件,但由于某种原因,发送的数据包含所选单选按钮的值“on”,而不是 value 属性的值。 我尝试通过 post() 函数手动操作和发
基本上我想实现这样的目标: Process 1 Thread 1 Receive X from process 2 Thread 2 Receive Y from proces
我目前正在 Google App Engine 上开发一个系统,对它还很陌生,我正在使用 Java 平台进行开发。我在 servlet 之间发送 session 对象时遇到问题。我已经在 appeng
当我尝试将“this”(触发的元素)作为参数发送给函数时,函数收到“Object[Document build.php]”作为参数,而不是触发的元素。请让我知道我的错误: function set(a
我正在寻找让我的应用响应联系人 > 发送的魔法咒语。我希望能够接收联系人的 URI 以便检索联系人。谁有 list 过滤器/代码 fragment 吗? 最佳答案 我没有睾丸,但您可以尝试基于 ACT
关于我心爱的套接字的另一个问题。我先解释一下我的情况。之后我会告诉你是什么困扰着我。 我有一个客户端和一个服务器。这两个应用程序都是用 C++ 编写的,实现了 winsock2。连接通过 TCP 和
我看到了这篇文章 http://www.eskimo.com/~scs/cclass/int/sx5.html 但这部分让我感到困惑:如果我们已经使用 send_array 或 send_array_
我对这行代码有疑问。我必须将一个数据包带到一个端口并重新发送到接口(interface)(例如:eth0)。我的程序成功地从端口获取数据包,但是当我重新发送(使用 send())到接口(interfa
我正在尝试编写一个 X11 输入驱动程序,它可以使用我的 Android 手机上的触摸屏来移动和单击鼠标。我可以正常移动鼠标,但我无法让应用程序正确识别点击。我当前的代码位于 https://gist
我是一名优秀的程序员,十分优秀!