I’m not using Autorelease. When I use like this code, I don’t know How to release BSPTile
NSUInteger numbToday = [[dateFormatter stringFromDate:[NSDate date]] intValue];
BSPTileView *tile = [gridView.subviews objectAtIndex: 0];
tile.comparedValue = 0;
BSPTileView is UIView Class. How to do ? please.
In this case, you don’t have to.
-objectAtIndex:just returns the object at that index in the array, without changing its retain count.