English 中文(简体)
SIGKILL 每当我停止偷窃时发出信号
原标题:SIGKILL signal everytime I stop debugging
  • 时间:2011-11-04 10:02:43
  •  标签:
  • ios
  • sigkill

我有Xcode 4.2,每当我掌握模拟器的手稿时,我就会发出警钟。 该行主档案中的断点:

int retVal = UIApplicationMain(argc, argv, nil, nil);

I know that when I force quit the app (from xcode s stop button) it would make sense to receive this, but I dont receive this when I do the same thing on my other apps. Sometimes I get a random sigkill message when I run the app (probably memory related, but I haven t found it yet)

任何建议?

最佳回答

确实,由于一个SIGKILL信号被真正送去了你停止或重新发射的台阶,这种信号会带来一些希望。

您可试探所解释的“带宽”解决办法:https://stackovermission.com/ 问题7682277/x条形表-4-2-jumps-to- main-m-every-time- after-upping-simulator”>。 简言之:

  1. Open preferences and then Behaviors;
  2. Select "Run completes";
  3. Mark "Show tab" and fill the input with "Edit"
  4. Do the same with "Run exits unexpectedly"

关于随机碎片,也许你应当跟踪仪器的参考文献。 http://developer.apple.com/library/mac/#documentation/DeveloperTools/Conceptual/InstrumentsUserGuide/ViewingandAnalyzingData/ViewingandAnalyzingData.html#/apple_ref/doc/uid/TP400652-CH5”,rel=“nofollow noretinger”

问题回答

暂无回答




相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签