Skip to content

Commit

Permalink
update pods
Browse files Browse the repository at this point in the history
  • Loading branch information
lovemo committed Mar 10, 2016
1 parent 94d2372 commit 803de7c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ - (void)smk_viewMangerWithHandleOfSubView:(UIView *)view info:(NSString *)info {
}
}

- (void)viewMangerWithModel:(NSDictionary *(^)( ))dict {
if (dict) {
self.dict = dict();
- (void)viewMangerWithModel:(NSDictionary *(^)( ))dictBlock {
if (dictBlock) {
self.dict = dictBlock();
}

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
/**
* 将model数据传递给viewManger
*/
- (void)viewMangerWithModel:(NSDictionary * (^) ( ))dict;
- (void)viewMangerWithModel:(NSDictionary * (^) ( ))dictBlock;

@end

Expand Down
4 changes: 2 additions & 2 deletions SUIMVVMKit.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |s|
s.name = 'SUIMVVMKit'
s.version = '0.3.5'
s.version = '0.3.6'
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.3.5' }
s.source = { :git => 'https://github.com/lovemo/MVVMFramework.git',:tag => '0.3.6' }
s.requires_arc = true
s.public_header_files = 'SUIMVVMKit/**/*.h'
s.source_files = 'SUIMVVMKit/SUIMVVMKit.h'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
/**
* 将model数据传递给viewManger
*/
- (void)viewMangerWithModel:(NSDictionary * (^) ( ))dict;
- (void)viewMangerWithModel:(NSDictionary * (^) ( ))dictBlock;

@end

Expand Down

0 comments on commit 803de7c

Please sign in to comment.