equal
deleted
inserted
replaced
152 [imgView release]; |
152 [imgView release]; |
153 |
153 |
154 UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 20)]; |
154 UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 20)]; |
155 label.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin; |
155 label.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin; |
156 label.textAlignment = UITextAlignmentCenter; |
156 label.textAlignment = UITextAlignmentCenter; |
157 label.text = @" ♥ THANK YOU ♥ "; |
157 label.text = NSLocalizedString(@" ♥ THANK YOU ♥ ", nil); |
158 label.backgroundColor = [UIColor clearColor]; |
158 label.backgroundColor = [UIColor clearColor]; |
159 label.center = CGPointMake(self.tableView.frame.size.width/2, 250); |
159 label.center = CGPointMake(self.tableView.frame.size.width/2, 250); |
160 [footer addSubview:label]; |
160 [footer addSubview:label]; |
161 [label release]; |
161 [label release]; |
162 |
162 |