Created
March 25, 2009 08:58
-
-
Save jarinudom/85377 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[_exploreTableView beginUpdates]; | |
// Remove Users | |
NSUInteger count=[_dataArray count]; | |
for(int i=max_val;i<count;i++) { | |
[_dataArray removeObjectAtIndex:[users count]]; | |
if(_selectedView==kExploreUsersView && _exploreTableView) { | |
[uiView deleteRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:(max_val+2) inSection:0]] withRowAnimation:kDefaultDeleteAnimation]; | |
} | |
} | |
[uiView endUpdates]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment