This commit is contained in:
Kyle Fang
2013-02-27 00:09:39 +08:00
parent 1db7b585e3
commit 8eb704c7bb
6 changed files with 17 additions and 5 deletions

View File

@@ -6,7 +6,6 @@ platform :ios, '6.0'
pod 'AHAlertView', '~>0.0.2'
pod 'GVUserDefaults', '~>0.9.0'
pod 'SVProgressHUD', '~>0.9'
pod 'PaperFold', '~>1.1'
target :ProgressTests, :exclusive => true do
pod 'GVUserDefaults', '~>0.9.0'

View File

@@ -56,7 +56,7 @@
044C661416AFE28100F9BC1E /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Icon@2x.png"; path = "../Icon@2x.png"; sourceTree = "<group>"; };
044C661716AFE29F00F9BC1E /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Icon.png; path = ../Icon.png; sourceTree = "<group>"; };
0486284B16B000D700F62384 /* Progress.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = Progress.xcdatamodel; sourceTree = "<group>"; };
048D433C16DB9BA400A40CB1 /* Progress.nss */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Progress.nss; sourceTree = "<group>"; };
048D433C16DB9BA400A40CB1 /* Progress.nss */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Progress.nss; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.css; };
048D433E16DB9D5300A40CB1 /* PPRemindersViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPRemindersViewController.h; sourceTree = "<group>"; };
048D433F16DB9D5400A40CB1 /* PPRemindersViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PPRemindersViewController.m; sourceTree = "<group>"; };
048D437016DBC4E000A40CB1 /* ReminderItemCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReminderItemCell.h; sourceTree = "<group>"; };

View File

@@ -11,7 +11,7 @@
#import <SVProgressHUD/SVProgressHUD.h>
#import "ReminderItemCell.h"
@interface PPRemindersViewController () <ReminderItemCellDelegate>
@interface PPRemindersViewController () <ReminderItemCellDelegate, UIScrollViewDelegate>
@property (nonatomic) NSArray *remindersDatasource;
@end

View File

@@ -110,7 +110,7 @@ TableCellDetail {
font-size: 14;
font-color: @secondaryFontColor;
}
TextField {
CustomTextField {
height: 37;
font-name: @inputFontName;
font-size: 18;
@@ -124,4 +124,4 @@ LargeTextField {
CustomView {
background-color: @primaryBackgroundColor;
background-image: NUIViewBackground.png;
}
}

View File

@@ -49,9 +49,11 @@
self.originalCenter = self.center;
UIImageView *checkMarkView = [[UIImageView alloc] initWithFrame:checkMarkOriginFrame];
checkMarkView.backgroundColor = [UIColor greenColor];
checkMarkView.highlightedImage = nil;
checkMarkView.tag = 1;
UIImageView *deleteMarkView = [[UIImageView alloc] initWithFrame:deleteMarkOriginFrame];
deleteMarkView.backgroundColor = [UIColor redColor];
deleteMarkView.highlightedImage = nil;
deleteMarkView.tag = 2;
[self insertSubview:checkMarkView atIndex:0];
[self insertSubview:deleteMarkView atIndex:0];

View File

@@ -87,6 +87,17 @@
<point key="canvasLocation" x="652" y="726"/>
</scene>
</scenes>
<classes>
<class className="NSLayoutConstraint" superclassName="NSObject">
<source key="sourceIdentifier" type="project" relativePath="./Classes/NSLayoutConstraint.h"/>
</class>
<class className="PPRemindersViewController" superclassName="UITableViewController">
<source key="sourceIdentifier" type="project" relativePath="./Classes/PPRemindersViewController.h"/>
</class>
<class className="ReminderItemCell" superclassName="UITableViewCell">
<source key="sourceIdentifier" type="project" relativePath="./Classes/ReminderItemCell.h"/>
</class>
</classes>
<simulatedMetricsContainer key="defaultSimulatedMetrics">
<simulatedStatusBarMetrics key="statusBar"/>
<simulatedOrientationMetrics key="orientation"/>