mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-05-04 20:41:18 +08:00
95 lines
2.6 KiB
Objective-C
95 lines
2.6 KiB
Objective-C
//
|
|
// Copyright 2009-2010 Facebook
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
/**
|
|
* This object bundles up a set of parameters and ships them off
|
|
* to TTBasicNavigator's openURLAction method. This object is designed with the chaining principle
|
|
* in mind. Once you've created a TTURLAction object, you can apply any other property to the
|
|
* object via the apply* methods. Each of these methods returns self, allowing you to chain them.
|
|
*
|
|
* Example:
|
|
* [[TTURLAction actionWithURLPath:@"tt://some/path"] applyAnimated:YES];
|
|
* Create an autoreleased URL action object with the path @"tt://some/path" that is animated.
|
|
*
|
|
* For the default values, see the apply method documentation below.
|
|
*/
|
|
@interface TTURLAction : NSObject {
|
|
NSString* _urlPath;
|
|
NSString* _parentURLPath;
|
|
NSDictionary* _query;
|
|
NSDictionary* _state;
|
|
BOOL _animated;
|
|
BOOL _withDelay;
|
|
|
|
UIViewAnimationTransition _transition;
|
|
}
|
|
|
|
@property (nonatomic, copy) NSString* urlPath;
|
|
@property (nonatomic, copy) NSString* parentURLPath;
|
|
@property (nonatomic, retain) NSDictionary* query;
|
|
@property (nonatomic, retain) NSDictionary* state;
|
|
@property (nonatomic, assign) BOOL animated;
|
|
@property (nonatomic, assign) BOOL withDelay;
|
|
@property (nonatomic, assign) UIViewAnimationTransition transition;
|
|
|
|
/**
|
|
* Create an autoreleased TTURLAction object with a URL path. The path is required.
|
|
*/
|
|
+ (id)actionWithURLPath:(NSString*)urlPath;
|
|
|
|
/**
|
|
* Initialize a TTURLAction object with a URL path. The path is required.
|
|
*
|
|
* Designated initializer.
|
|
*/
|
|
- (id)initWithURLPath:(NSString*)urlPath;
|
|
|
|
/**
|
|
* @default nil
|
|
*/
|
|
- (TTURLAction*)applyParentURLPath:(NSString*)parentURLPath;
|
|
|
|
/**
|
|
* @default nil
|
|
*/
|
|
- (TTURLAction*)applyQuery:(NSDictionary*)query;
|
|
|
|
/**
|
|
* @default nil
|
|
*/
|
|
- (TTURLAction*)applyState:(NSDictionary*)state;
|
|
|
|
/**
|
|
* @default NO
|
|
*/
|
|
- (TTURLAction*)applyAnimated:(BOOL)animated;
|
|
|
|
/**
|
|
* @default NO
|
|
*/
|
|
- (TTURLAction*)applyWithDelay:(BOOL)withDelay;
|
|
|
|
/**
|
|
* @default UIViewAnimationTransitionNone
|
|
*/
|
|
- (TTURLAction*)applyTransition:(UIViewAnimationTransition)transition;
|
|
|
|
|
|
@end
|