我已将我的XCode 5升级到6,但不幸的是,调试器突然停止或此时没有断点的异常.请参阅下面的图片了解更多详情.


这是我使用的示例代码,在以前的版本上运行很好.这有什么问题,我该怎么做才能避免这种异常?
UIFont *font = [UIFont fontWithName:@"HelveticaNeue-Bold" size:20.0f];
NSMutableParagraphStyle *paragraphStyle = [[NSParagraphStyle defaultParagraphStyle] mutableCopy];
paragraphStyle.lineBreakMode = NSLineBreakByWordWrapping;
paragraphStyle.alignment = NSTextAlignmentCenter;
NSDictionary *attributes = @{ NSFontAttributeName: font, NSParagraphStyleAttributeName: paragraphStyle };
[@"Hello" drawInRect:CGRectMake(118, 32, 375, 24) withAttributes:attributes];
Run Code Online (Sandbox Code Playgroud) 我不知道如何在Xcode 6.1.1上添加Xcode聚合目标,以前在newfile-> other-> aggregate下有一个选项.但我不知道在这个版本的Xcode中聚合目标模板在哪里.