This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I'm trying to display a modal view straight after another view has been presented modally (the second is a loading view that appears). - (void)viewDidAppear:(BOOL)animated { [super viewDidAppear:animated]; // Show load LoadViewController *loader = [[LoadViewController alloc] init]; [self presentModalViewController: loader animated:NO]; [loader release]; } But when I do this I [...] read more
I can't reproduce the error I'm getting in the Apple crash reports. I have 4 apps using the same codebase already approved and now I have had 2 rejected with the same errors that I have never come across. Below is the crash report that I got back from my [...] read more
Some user's of our iPad application are reporting a crash on launch of the application. Though I have the same device (and the same OS version 4.2.1) I am unable to replicate the crash on my device. I managed to get this crash log from ITC but unsure if this [...] read more
0 is not a valid thread ID, according to MSDN and Raymond Chen. But, when I analyzed a dump, one of the two dead-locked critical sections, is locked, but with OwningThread as 0. Can somebody help to explain? > !locks CritSec ModuleA!lockerA+4 at 58cf4b24 WaiterWoken No LockCount 230 RecursionCount 0 [...] read more
I'd like to start of by apologizing for this ridiculously long post, but I tried to provide as much code and data as possible for you to refer to. I am working on a video project where I will need the flexibility of the AVQueuePlayer (foremost the ability to scale [...] read more
I am using table view in which I am showing 10 row of table by custom cell and one is by normal cell. I have use this code... - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier=@"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (indexPath.row == [listofBusiness count]) { if [...] read more