Latest | 0.2.3 |
---|---|
Homepage | https://github.com/KingAndroid/HYPEventManager |
License | MIT |
Platforms | ios 6.0, requires ARC |
Frameworks | Foundation, EventKit |
Authors |
HYPEventManager
HYPEventManager is the easiest way to add, update and remove iOS calendar events.
How to create an event with HYPEventManager?
- (void)createEventWithTitle:(NSString *)title
startDate:(NSDate *)startDate
duration:(NSInteger)duration
completion:(void (^)(NSString *eventIdentifier, NSError *error))completion;
How to update an event with HYPEventManager?
- (void)updateEvent:(NSString *)eventIdentifier
withTitle:(NSString *)title
startDate:(NSDate *)startDate
endDate:(NSDate *)endDate
completion:(void (^)(NSString *eventIdentifier, NSError *error))completion;
How to delete an event with HYPEventManager?
- (void)deleteEventWithIdentifier:(NSString *)identifier
completion:(void (^)(NSError *error))completion;
How to check if an event exists with HYPEventManager?
- (void)isEventInCalendar:(NSString *)eventIdentifier
completion:(void (^)(BOOL found))completion;
TODO:
- Make Demo project.
License
HYPEventManager is fully open source under the MIT license. Check LICENSE for details.
Contributions
If there’s something you would like to improve please create a friendly and constructive issue, getting your feedback would be awesome. Have a great day.
Latest podspec
{ "name": "[email protected]", "version": "0.2.3", "summary": "HYPEventManager is the easiest way to add, update and remove iOS calendar events", "description": " * HYPEventManager is the easiest way to add, update and remove iOS calendar eventsn", "homepage": "https://github.com/KingAndroid/HYPEventManager", "license": { "type": "MIT", "file": "LICENSE.md" }, "authors": { "King Android": "[email protected]" }, "platforms": { "ios": "6.0" }, "source": { "git": "https://github.com/KingAndroid/HYPEventManager.git", "tag": "0.2.3" }, "source_files": "HYPEventManager/", "frameworks": [ "Foundation", "EventKit" ], "requires_arc": true }
Thu, 03 Mar 2016 23:48:04 +0000