2016-03-15 22:17:08 +01:00
2016-03-16 02:05:24 +01:00
2015-12-28 19:29:34 +01:00
2015-12-28 19:29:34 +01:00
2015-12-28 19:29:34 +01:00
2015-12-28 19:29:34 +01:00
2016-03-16 02:05:24 +01:00
2016-01-13 11:24:05 +01:00

PNObject

[![CI Status](http://img.shields.io/travis/Giuseppe Nucifora/PNObject.svg?style=flat)](https://travis-ci.org/Giuseppe Nucifora/PNObject) Version License Platform

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

PNObject is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "PNObject"

##Usage Example

PNObject Subclass

Customer.h

#import <PNObject/PNObject.h>

@interface Customer : PNObject <PNObjectSubclassing>

@property (nonatomic, strong) NSString *name;
@property (nonatomic, strong) NSString *lastName;
@property (nonatomic, strong) NSString *email;
@property (nonatomic, strong) NSDate *birthDate;
@property (nonatomic, strong) PNAddress *address;

@end
#import "Customer.h"

@implementation Customer

+ (NSString *) objectClassName {
return @"Customer";
}


+ (NSDictionary *) objcetMapping {
NSDictionary *mapping = @{
@"name":@"first_name",
@"surname":@"last_name",
@"email":@"email",
@"birthDate":@"birth_date",
@"address":@{@"key":@"address",@"type":@"PNAddress"},
};
return mapping;
}

Author

Giuseppe Nucifora, me@giuseppenucifora.com

License

PNObject is available under the MIT license. See the LICENSE file for more info.

Description
PNObject is a simple replica of the more complex ParseObject
Readme MIT 5.5 MiB
Languages
Objective-C 98.9%
Ruby 0.8%
C 0.3%