Skip to content

Commit

Permalink
Merge pull request #580 from ParsePlatform/nlutsenko.tvos.eventually
Browse files Browse the repository at this point in the history
Disable saveEventually/deleteEventually on tvOS.
  • Loading branch information
nlutsenko committed Nov 18, 2015
2 parents 58954ab + ffee173 commit 82d214f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Parse/PFObject.h
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ NS_REQUIRES_PROPERTY_DEFINITIONS
@returns The task that encapsulates the work being done.
*/
- (BFTask PF_GENERIC(NSNumber *)*)saveEventually PF_WATCH_UNAVAILABLE;
- (BFTask PF_GENERIC(NSNumber *)*)saveEventually PF_TV_UNAVAILABLE PF_WATCH_UNAVAILABLE;

/*!
@abstract Saves this object to the server at some unspecified time in the future,
Expand All @@ -374,7 +374,7 @@ NS_REQUIRES_PROPERTY_DEFINITIONS
@param callback The block to execute.
It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
*/
- (void)saveEventually:(nullable PFBooleanResultBlock)callback PF_WATCH_UNAVAILABLE;
- (void)saveEventually:(nullable PFBooleanResultBlock)callback PF_TV_UNAVAILABLE PF_WATCH_UNAVAILABLE;

///--------------------------------------
/// @name Saving Many Objects
Expand Down Expand Up @@ -826,7 +826,7 @@ NS_REQUIRES_PROPERTY_DEFINITIONS
@returns The task that encapsulates the work being done.
*/
- (BFTask PF_GENERIC(NSNumber *)*)deleteEventually PF_WATCH_UNAVAILABLE;
- (BFTask PF_GENERIC(NSNumber *)*)deleteEventually PF_TV_UNAVAILABLE PF_WATCH_UNAVAILABLE;

///--------------------------------------
/// @name Dirtiness
Expand Down

0 comments on commit 82d214f

Please sign in to comment.