查看加载的代码中有什么错误,导致程序崩溃?

发布于 2024-12-06 22:54:11 字数 1028 浏览 1 评论 0原文

我正在使用此代码来查看确实加载了..

- (void)viewDidLoad {
myPicker.hidden=TRUE;
NSArray * shopping=[NSArray arrayWithObjects:@"Lie in bed",
                    @"Shower",
                    @"Brush Teeth",
                    @"Eat",
                    @"Make Lunch",
                    @"Dressed",
                    @"Make up",
                    @"Hair",
                    @"Prepare Childern",
                    @"Other",nil];

for(int i=0;i<61;i++)
{
    if (array_time ==nil) {
        array_time=[[NSMutableArray alloc] init];

    }
    NSString *str=[NSString stringWithFormat:@"%i Min",i];
    [array_time addObject:[NSString stringWithFormat:@"%@",str]];
    [str release]; 
}
for (int i=0; i<61; i++) {
    NSLog(@"%@",[array_time objectAtIndex:i]);
}

if(array_from==nil)
{
    array_from=[[NSMutableArray alloc] init];
}
[array_from addObject:shopping];
[super viewDidLoad];

}

之后我为表视图进行了编码。我已经通过应用断点进行了检查,但在视图加载后我被终止了。在控制台上它没有给出任何错误。 那么这段代码或任何地方有什么错误呢?

提前致谢..

I am using this code for view did load..

- (void)viewDidLoad {
myPicker.hidden=TRUE;
NSArray * shopping=[NSArray arrayWithObjects:@"Lie in bed",
                    @"Shower",
                    @"Brush Teeth",
                    @"Eat",
                    @"Make Lunch",
                    @"Dressed",
                    @"Make up",
                    @"Hair",
                    @"Prepare Childern",
                    @"Other",nil];

for(int i=0;i<61;i++)
{
    if (array_time ==nil) {
        array_time=[[NSMutableArray alloc] init];

    }
    NSString *str=[NSString stringWithFormat:@"%i Min",i];
    [array_time addObject:[NSString stringWithFormat:@"%@",str]];
    [str release]; 
}
for (int i=0; i<61; i++) {
    NSLog(@"%@",[array_time objectAtIndex:i]);
}

if(array_from==nil)
{
    array_from=[[NSMutableArray alloc] init];
}
[array_from addObject:shopping];
[super viewDidLoad];

}

after that i have coded for table view. I have checked by applying break point all over but i was terminate after view did load. On console it is not giving any error.
So what is mistake in this code or any where?

Thanks in advance..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

草莓酥 2024-12-13 22:54:11

你真的不需要释放这个字符串:

str

  NSString *str=[NSString stringWithFormat:@"%i Min",i];
    [array_time addObject:[NSString stringWithFormat:@"%@",str]];
    [str release]; 

你没有分配它

you don't really need to release this string:

str

  NSString *str=[NSString stringWithFormat:@"%i Min",i];
    [array_time addObject:[NSString stringWithFormat:@"%@",str]];
    [str release]; 

you didn't allocate it

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文