I encounter this error with iOS 3.0 simulator, but not with simulators 3.1.3 and 3.2.
After creating a character breakpoint on malloc_error_break, I see this in the log:
[Session started at 2010-02-13 19:15:22 +0700.]
2010-02-13 19:15:24.405 iPortals[21656:207] bool for 1
iPortals(21656,0xa0089500) malloc: *** error for object 0x285e000: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
iPortals(21656,0xa0089500) malloc: *** error for object 0x2850000: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
iPortals(21656,0xa0089500) malloc: *** error for object 0x286c000: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
iPortals(21656,0xa0089500) malloc: *** error for object 0x287c000: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
here is my code
@implementation WebViewController
@synthesize myWebView;
@synthesize AppDelegate;
@synthesize mybanner;
@synthesize request;
- (void)dealloc
{
myWebView.delegate = nil;
self.myWebView = nil;
[self.myWebView release];
[super setView:nil];
[myWebView release];
myWebView = nil;
request = nil;
[mybanner release];
[super dealloc];
}
- (void)setView:(UIView *)aView
{
if (aView == nil) {
self.myWebView = nil;
}
[super setView:aView];
}
- (void)action {
AppDelegate = nil;
AppDelegate = [[UIApplication sharedApplication] delegate];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:AppDelegate.PushLink]];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
[[NSURLCache sharedURLCache] removeAllCachedResponses];
}
- (void)viewDidLoad
{
[super viewDidLoad];
self.title = NSLocalizedString(@"iPortals", @"");
AppDelegate = nil;
AppDelegate = [[UIApplication sharedApplication] delegate];
self.myWebView.backgroundColor = [UIColor grayColor];
self.myWebView.scalesPageToFit = YES;
self.myWebView.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
self.myWebView.delegate = self;
[self.view addSubview: self.myWebView];
self.mybanner.backgroundColor = [UIColor clearColor];
[self.view addSubview: self.mybanner];
request = nil;
request = [NSURLRequest requestWithURL:[NSURL URLWithString:AppDelegate.PushLink]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:60.0];
[self.myWebView loadRequest:request];
}
- (void)viewDidUnload
{
[super viewDidUnload];
[self.myWebView release];
self.myWebView = nil;
}
-(BOOL)canBecomeFirstResponder {
return YES;
}
-(void)viewDidAppear:(BOOL)animated {
[self becomeFirstResponder];
}
- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event {
if ( event.subtype == UIEventSubtypeMotionShake )
{
AppDelegate = nil;
AppDelegate = [[UIApplication sharedApplication] delegate];
[AppDelegate ToggleNavigationBar];
[AppDelegate playsound:1];
[self setAdHide:AppDelegate.toggle];
}
}
- (void)setAdHide:(BOOL)hide {
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.6];
if (!hide) {
if (current == UIInterfaceOrientationLandscapeLeft || current == UIInterfaceOrientationLandscapeRight) {
[mybanner setFrame:CGRectMake(0, 272, mybanner.frame.size.width, mybanner.frame.size.height)];
}
else {
[mybanner setFrame:CGRectMake(0, 432, mybanner.frame.size.width, mybanner.frame.size.height)];
}
}
else {
[self restoreAd];
}
[UIView commitAnimations];
}
- (void)restoreAd {
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.6];
[mybanner setFrame:CGRectMake(0, 0, mybanner.frame.size.width, mybanner.frame.size.height)];
[UIView commitAnimations];
}
#pragma mark -
#pragma mark UIViewController delegate methods
- (void)viewWillAppear:(BOOL)animated
{
self.myWebView.delegate = nil;
self.myWebView.delegate = self;
}
- (void)viewWillDisappear:(BOOL)animated
{
[self.myWebView stopLoading];
self.myWebView.delegate = nil;
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
current = interfaceOrientation;
[self restoreAd];
return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIDeviceOrientationPortrait) ||
(interfaceOrientation == UIInterfaceOrientationLandscapeRight));
}
- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
[textField resignFirstResponder];
[self.myWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[textField text]]]];
return YES;
}
#pragma mark -
#pragma mark UIWebViewDelegate
- (void)webViewDidStartLoad:(UIWebView *)webView
{
[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
}
- (void)webViewDidFinishLoad:(UIWebView *)webView
{
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
}
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
{
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
}
@end
source
share