diff --git a/Classes/DemoTableViewController.m b/Classes/DemoTableViewController.m index 2522d67..bf9f1f9 100644 --- a/Classes/DemoTableViewController.m +++ b/Classes/DemoTableViewController.m @@ -27,7 +27,7 @@ - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { - + static NSString *CellIdentifier = @"CellIdentifier"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { diff --git a/main.m b/main.m index 788b3cd..76d791e 100644 --- a/main.m +++ b/main.m @@ -9,7 +9,7 @@ #import int main(int argc, char *argv[]) { - + NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; int retVal = UIApplicationMain(argc, argv, nil, @"PullToRefreshAppDelegate"); [pool release];