Skip to content

Commit

Permalink
add mark
Browse files Browse the repository at this point in the history
  • Loading branch information
lovemo committed Apr 9, 2016
1 parent 0b9696b commit 399dc2e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
Binary file modified SUIMVVMDemo/.DS_Store
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ typedef enum : NSUInteger {
*/
@property (nonatomic, assign) SMKRequestMethod smk_method;
/**
* url
* url (如果设置了url,则不需要在设置scheme,host,path 属性)
*/
@property (nonatomic, copy, nonnull) NSString *smk_url;
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ - (void)setSmk_method:(SMKRequestMethod)smk_method {
}

/**
* url
*/
- (NSString *)smk_url {
Expand Down
4 changes: 2 additions & 2 deletions SUIMVVMKit.podspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Pod::Spec.new do |s|

s.name = 'SUIMVVMKit'
s.version = '0.4.3'
s.version = '0.4.4'
s.summary = 'SUIMVVMKit is a MVVM frameWork easy to develop iOS'
s.homepage = 'https://github.com/lovemo/MVVMFramework'
s.platform = :ios, '7.0'
s.license = 'MIT'
s.author = { 'lovemo' => '[email protected]' }
s.source = { :git => 'https://github.com/lovemo/MVVMFramework.git',:tag => '0.4.3' }
s.source = { :git => 'https://github.com/lovemo/MVVMFramework.git',:tag => '0.4.4' }
s.requires_arc = true
s.public_header_files = 'SUIMVVMKit/**/*.h'
s.source_files = 'SUIMVVMKit/SUIMVVMKit.h'
Expand Down
2 changes: 1 addition & 1 deletion SUIMVVMKit/SUIMVVMKit/NSObject+SMKRequest.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ typedef enum : NSUInteger {
*/
@property (nonatomic, assign) SMKRequestMethod smk_method;
/**
* url
* url (如果设置了url,则不需要在设置scheme,host,path 属性)
*/
@property (nonatomic, copy, nonnull) NSString *smk_url;
/**
Expand Down
1 change: 1 addition & 0 deletions SUIMVVMKit/SUIMVVMKit/NSObject+SMKRequest.m
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ - (void)setSmk_method:(SMKRequestMethod)smk_method {
}

/**
* url
*/
- (NSString *)smk_url {
Expand Down

0 comments on commit 399dc2e

Please sign in to comment.