.h:
#import <UIKit/UIKit.h>
#import "Todo.h"
@interface TodoCostApplyViewController : UIViewController
{
NSThread* headViewThread;
NSThread* tableViewThread;
}
@property (nonatomic, retain) NSThread* headViewThread;
@property (nonatomic, retain) NSThread* tableViewThread;
@end
.m:
@interface TodoCostApplyViewController ()
@end
- (void)viewDidLoad
{
[super viewDidLoad];
headViewThread = [[NSThread alloc] initWithTarget:self
selector:@selector(drawHeadView)
object:nil];
[headViewThread start];
tableViewThread = [[NSThread alloc] initWithTarget:self
selector:@selector(drawTableView)
object:nil];
[tableViewThread start];
}
- (void)dealloc
{
[tableViewThread release];
[headViewThread release];
}
tableViewThreadとheadViewThreadに関するメモリリークはありますか?そして、漏れがある場合、私はこの問題をどうすればよいですか?前もって感謝します!