- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我了解到还有其他人遇到此问题,我看了很多关于此问题的帖子,但仍然不知道为什么我的应用程序持续崩溃。我只是不明白发生了什么='(我尝试清除所有内容,注释掉我的代码的一部分,并按照这个问题的其他答案,但无济于事。这是我的viewControler.h:
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController <UITextFieldDelegate>
//txt fields for max value and thread
@property (weak, nonatomic) IBOutlet UITextField *txtNumThreads;
@property (weak, nonatomic) IBOutlet UITextField *txtMaxValue;
//labels for time elapsed, primes found, and time
@property (weak, nonatomic) IBOutlet UILabel *lblTimeElapsed;
@property (weak, nonatomic) IBOutlet UILabel *lblPrimesFound;
@property (weak, nonatomic) IBOutlet UILabel *lblTime;
//actions for each of the buttons
- (IBAction)btnStart_click:(id)sender;
- (IBAction)btnClear_click:(id)sender;
- (IBAction)btnTime_click:(id)sender;
- (IBAction)btnShow_click:(id)sender;
//show button and text view to show results
@property (weak, nonatomic) IBOutlet UIButton *btnClear;
@property (weak, nonatomic) IBOutlet UIButton *btnShow;
@property (weak, nonatomic) IBOutlet UIButton *btnStart;
@property (weak, nonatomic) IBOutlet UITextView *txtViewResults;
//boolean to determine if the start button has been pressed once already
@property bool isComputing;
//for number of threads and max value
@property int NumThreads;
@property int MaxValue;
@property int sqRoot;
//array for primes and results
@property (strong, nonatomic) NSMutableArray *SieveArray;
@property (strong, nonatomic) NSMutableArray *PrimesAndThreads;
@end
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
//symbolic constants for max number of threads and max value
static const int MAX_NUM_THREADS = 4;
static const int MAX_VALUE = 9999;
@synthesize isComputing;
@synthesize sqRoot;
@synthesize NumThreads;
@synthesize MaxValue;
@synthesize SieveArray;
@synthesize PrimesAndThreads;
- (void)viewDidLoad
{
[super viewDidLoad];
//to dismiss the keyboard using tap gesture
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc]
initWithTarget:self
action:@selector(dismissKeyboard)];
//add tap gesture
[self.view addGestureRecognizer:tap];
//start with isComputing being false
isComputing = false;
//allocate
SieveArray = [NSMutableArray array];
PrimesAndThreads = [NSMutableArray array];
}
//to dismiss the keyboard using resign first responder
-(void)dismissKeyboard {
[self.txtMaxValue resignFirstResponder];
[self.txtNumThreads resignFirstResponder];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
//click event for the start button
- (IBAction)btnStart_click:(id)sender {
//clear contents of boxes
self.txtViewResults.text = @"";
if(SieveArray)
[SieveArray removeAllObjects];
if(PrimesAndThreads)
[PrimesAndThreads removeAllObjects];
[self.btnShow setEnabled:FALSE];
if([self txtNumThreads].text.length != 0 && [self txtMaxValue].text.length != 0)
{
//get the user entered data
NumThreads = [self.txtNumThreads.text intValue];
MaxValue = [self.txtMaxValue.text intValue];
if(NumThreads <= MAX_NUM_THREADS && MaxValue <= MAX_VALUE && NumThreads > 0)
{
//square root for the max number of divisions
sqRoot = sqrt(MaxValue);
//array for the algorithm
for(int i = 0; i < MaxValue+1; i++)
[SieveArray addObject:[NSNumber numberWithInt:1]];
switch (NumThreads) {
case 1:
{
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),^{
[self SieveAlgorithm:0 Right:MaxValue ThreadNum:1];
});
break;
}
case 2:
{
int FirstHalf = MaxValue/2;
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),^{
[self SieveAlgorithm:0 Right:FirstHalf ThreadNum:1];
});
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),^{
[self SieveAlgorithm:FirstHalf+1 Right:MaxValue ThreadNum:2];
});
break;
}
case 3:
{
int OneThird = MaxValue/3;
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),^{
[self SieveAlgorithm:0 Right:OneThird ThreadNum:1];
});
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),^{
[self SieveAlgorithm:OneThird+1 Right:OneThird*2 ThreadNum:2];
});
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),^{
[self SieveAlgorithm:(OneThird*2)+1 Right:MaxValue ThreadNum:3];
});
break;
}
case 4:
{
int OneFourth = MaxValue/4;
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),^{
[self SieveAlgorithm:0 Right:OneFourth ThreadNum:1];
});
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),^{
[self SieveAlgorithm:OneFourth+1 Right:OneFourth*2 ThreadNum:2];
});
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),^{
[self SieveAlgorithm:(OneFourth*2)+1 Right:OneFourth*3 ThreadNum:3];
});
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),^{
[self SieveAlgorithm:(OneFourth*3)+1 Right:MaxValue ThreadNum:4];
});
break;
}
default:
break;
}
}
else
{
UIAlertView *ExceedMaxError = [[UIAlertView alloc] initWithTitle:@"Error" message:[NSString stringWithFormat:@"Please enter between 1 and %d threads, and a max of %d for value.", MAX_NUM_THREADS, MAX_VALUE] delegate:nil cancelButtonTitle:@"Okay" otherButtonTitles:nil, nil];
[ExceedMaxError show];
}
}
else
{
UIAlertView *blankTextsError = [[UIAlertView alloc] initWithTitle:@"Error" message:@"Please enter No Threads and Max Value." delegate:nil cancelButtonTitle:@"Okay" otherButtonTitles:nil, nil];
[blankTextsError show];
}
[self.btnShow setEnabled:TRUE];
}
//click event for the clear button
- (IBAction)btnClear_click:(id)sender {
self.txtMaxValue.text = @"";
self.txtNumThreads.text = @"";
self.txtViewResults.text = @"";
}
//click event for the time button
- (IBAction)btnTime_click:(id)sender {
NSDate *now = [NSDate date];
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateStyle:NSDateFormatterShortStyle];
[formatter setTimeStyle:NSDateFormatterShortStyle];
self.lblTime.text = [NSString stringWithFormat:@"%@", [formatter stringFromDate:now]];
}
//click event for the show button
- (IBAction)btnShow_click:(id)sender {
//clear the result text view
self.txtViewResults.text = @"";
for(id object in PrimesAndThreads)
{
self.txtViewResults.text = [self.txtViewResults.text stringByAppendingString:[NSString stringWithFormat:@"%@\n", object]];
}
if(PrimesAndThreads)
[PrimesAndThreads removeAllObjects];
}
//Sieve Algorithm function
//Takes the left and right subscript of the range and performs the algorithm on SieveArray
-(void)SieveAlgorithm:(int)left Right:(int)right ThreadNum:(int)thread {
//get rid of multiples of i to square root of MaxValue
for(int i = 2; i <= sqRoot; i++)
{
for(int x = i+i; x <= right; x=x+i)
{
[SieveArray replaceObjectAtIndex:x withObject:[NSNumber numberWithInt:0]];
}
}
//add the primes to a string array for printing later
for(int l = left; l <= right; l++)
{
if([[SieveArray objectAtIndex:l] integerValue] == 1)
[PrimesAndThreads addObject:[NSString stringWithFormat:@"ThNum:%d Prime:%d", thread, l]];
}
}
@end
libobjc.A.dylib`objc_msgSend:
0x10e608c: movl 8(%esp), %ecx
0x10e6090: movl 4(%esp), %eax
0x10e6094: testl %eax, %eax
0x10e6096: je 0x10e60e8 ; objc_msgSend + 92
0x10e6098: movl (%eax), %edx
0x10e609a: pushl %edi
0x10e609b: movl 8(%edx), %edi
0x10e609e: pushl %esi
0x10e609f: movl (%edi), %esi
0x10e60a1: movl %ecx, %edx
0x10e60a3: shrl $2, %edx
0x10e60a6: andl %esi, %edx
0x10e60a8: movl 8(%edi,%edx,4), %eax
0x10e60ac: testl %eax, %eax
0x10e60ae: je 0x10e60b9 ; objc_msgSend + 45
0x10e60b0: cmpl (%eax), %ecx
0x10e60b2: je 0x10e60d0 ; objc_msgSend + 68
0x10e60b4: addl $1, %edx
0x10e60b7: jmp 0x10e60a6 ; objc_msgSend + 26
0x10e60b9: popl %esi
0x10e60ba: popl %edi
0x10e60bb: movl 4(%esp), %edx
0x10e60bf: movl (%edx), %eax
0x10e60c1: jmp 0x10e60d9 ; objc_msgSend + 77
0x10e60c3: nopw %cs:(%eax,%eax)
0x10e60d0: movl 8(%eax), %eax
0x10e60d3: popl %esi
0x10e60d4: popl %edi
0x10e60d5: xorl %edx, %edx
0x10e60d7: jmpl *%eax
0x10e60d9: pushl %eax
0x10e60da: pushl %ecx
0x10e60db: pushl %edx
0x10e60dc: calll 0x10d3df3 ; _class_lookupMethodAndLoadCache3
0x10e60e1: addl $12, %esp
0x10e60e4: xorl %edx, %edx
0x10e60e6: jmpl *%eax
0x10e60e8: calll 0x10e60ed ; objc_msgSend + 97
0x10e60ed: popl %edx
0x10e60ee: movl 1007235(%edx), %eax
0x10e60f4: testl %eax, %eax
0x10e60f6: je 0x10e60fe ; objc_msgSend + 114
0x10e60f8: movl %eax, 4(%esp)
0x10e60fc: jmp 0x10e6098 ; objc_msgSend + 12
0x10e60fe: movl $0, %edx
0x10e6103: ret
0x10e60b2: je 0x10e60d0 ; objc_msgSend + 68
(lldb)
最佳答案
乍看上去。
SieveArray = [NSMutableArray array];
PrimesAndThreads = [NSMutableArray array];
SieveArray = [[NSMutableArray alloc]init];
PrimesAndThreads = [[NSMutableArray alloc]init];
关于iphone - iOS App在启动时崩溃,没有显示任何错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15650393/
IO 设备如何知道属于它的内存中的值在memory mapped IO 中发生了变化? ? 例如,假设内存地址 0 专用于保存 VGA 设备的背景颜色。当我们更改 memory[0] 中的值时,VGA
我目前正在开发一个使用Facebook sdk登录(通过FBLoginView)的iOS应用。 一切正常,除了那些拥有较旧版本的facebook的人。 当他们按下“使用Facebook登录”按钮时,他
假设我有: this - is an - example - with some - dashesNSRange将使用`rangeOfString:@“-”拾取“-”的第一个实例,但是如果我只想要最后
Card.io SDK提供以下详细信息: 卡号,有效期,月份,年份,CVV和邮政编码。 如何从此SDK获取国家名称。 - (void)userDidProvideCreditCardInfo:(Car
iOS 应用程序如何从网络服务下载图片并在安装过程中将它们安装到用户的 iOS 设备上?可能吗? 最佳答案 您无法控制应用在用户设备上的安装,因此无法在安装过程中下载其他数据。 只需在安装后首次启动应
我曾经开发过一款企业版 iOS 产品,我们公司曾将其出售给大型企业,供他们的员工使用。 该应用程序通过 AppStore 提供,企业用户获得了公司特定的配置文件(包含应用程序配置文件)以启用他们有权使
我正在尝试将 Card.io SDK 集成到我的 iOS 应用程序中。我想为 CardIO ui 做一个简单的本地化,如更改取消按钮标题或“在此保留信用卡”提示文本。 我在 github 上找到了这个
我正在使用 CardIOView 和 CardIOViewDelegate 类,没有可以设置为 YES 的 BOOL 来扫描 collectCardholderName。我可以看到它在 CardIOP
我有一个集成了通话工具包的 voip 应用程序。每次我从我的 voip 应用程序调用时,都会在 native 电话应用程序中创建一个新的最近通话记录。我在 voip 应用程序中也有自定义联系人(电话应
iOS 应用程序如何知道应用程序打开时屏幕上是否已经有键盘?应用程序运行后,它可以接收键盘显示/隐藏通知。但是,如果应用程序在分屏模式下作为辅助应用程序打开,而主应用程序已经显示键盘,则辅助应用程序不
我在模拟器中收到以下错误: ImageIO: CGImageReadSessionGetCachedImageBlockData *** CGImageReadSessionGetCachedIm
如 Apple 文档所示,可以通过 EAAccessory Framework 与经过认证的配件(由 Apple 认证)进行通信。但是我有点困惑,因为一些帖子告诉我它也可以通过 CoreBluetoo
尽管现在的调试器已经很不错了,但有时找出应用程序中正在发生的事情的最好方法仍然是古老的 NSLog。当您连接到计算机时,这样做很容易; Xcode 会帮助弹出日志查看器面板,然后就可以了。当您不在办公
在我的 iOS 应用程序中,我定义了一些兴趣点。其中一些有一个 Kontakt.io 信标的名称,它绑定(bind)到一个特定的 PoI(我的意思是通常贴在信标标签上的名称)。现在我想在附近发现信标,
我正在为警报提示创建一个 trigger.io 插件。尝试从警报提示返回数据。这是我的代码: // Prompt + (void)show_prompt:(ForgeTask*)task{
您好,我是 Apple iOS 的新手。我阅读并搜索了很多关于推送通知的文章,但我没有发现任何关于 APNS 从 io4 到 ios 6 的新更新的信息。任何人都可以向我提供 APNS 如何在 ios
UITabBar 的高度似乎在 iOS 7 和 8/9/10/11 之间发生了变化。我发布这个问题是为了让其他人轻松找到答案。 那么:在 iPhone 和 iPad 上的 iOS 8/9/10/11
我想我可以针对不同的 iOS 版本使用不同的 Storyboard。 由于 UI 的差异,我将创建下一个 Storyboard: Main_iPhone.storyboard Main_iPad.st
我正在写一些东西,我将使用设备的 iTunes 库中的一部分音轨来覆盖 2 个视频的组合,例如: AVMutableComposition* mixComposition = [[AVMutableC
我创建了一个简单的 iOS 程序,可以顺利编译并在 iPad 模拟器上运行良好。当我告诉 XCode 4 使用我连接的 iPad 设备时,无法编译相同的程序。问题似乎是当我尝试使用附加的 iPad 时
我是一名优秀的程序员,十分优秀!