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
#import <UIKit/UIKit.h> | |
@interface GOCustomView : UIView | |
@property(nonatomic, retain) UIColor *bgColor; | |
@property (nonatomic,retain) NSMutableArray *xArr; | |
@end |
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
NSInteger assetCount = [group numberOfAssets]; | |
if(assetCount <= 0){ | |
return; | |
} | |
[group setAssetsFilter:[ALAssetsFilter allPhotos]]; | |
NSIndexSet *indexes = [NSIndexSet indexSetWithIndex:assetCount-1]; | |
// instead of this: |
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
//Login | |
Login { | |
let email: String | |
let fb_id: String //when fb is implemented | |
let password: String | |
let password_reset_code: String | |
let phone_number: String | |
let user_id: String | |
} |