Make it pretty. add drag to hide or show completed.

This commit is contained in:
Kyle Fang
2013-02-27 12:35:17 +08:00
parent 67e8db2e5d
commit 656deba724
6 changed files with 46 additions and 27 deletions

View File

@@ -9,10 +9,11 @@
#import "GVUserDefaults+Progress.h"
@implementation GVUserDefaults (Progress)
@dynamic firstTimeLaunchApp;
@dynamic firstTimeLaunchApp, hideCompleted;
- (NSDictionary *)setupDefaults{
return @{@"firstTimeLaunchApp": @YES};
return @{@"firstTimeLaunchApp": @YES,
@"hideCompleted": @YES};
}
@end