Skip to content

Commit

Permalink
修复ignore字段问题。
Browse files Browse the repository at this point in the history
  • Loading branch information
朱博文 committed Jul 8, 2022
1 parent 606fe28 commit c0ee19f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ZBWDBHelper.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
#

s.name = "ZBWDBHelper"
s.version = "0.0.9"
s.version = "0.0.10"
s.summary = "FMDB 封装."

# This description is used to generate tags and improve search results.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<key>ZBWDBHelper.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>2</integer>
<integer>0</integer>
</dict>
</dict>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion ZBWDBHelper/DBModel.m
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ + (void)DB_initData {
return;
}

NSArray *ignoreArr = [[self class] instancesRespondToSelector:@selector(DB_ignoreProperty)] ? [self DB_ignoreProperty] : nil;
NSArray *ignoreArr = [self respondsToSelector:@selector(DB_ignoreProperty)] ? [self DB_ignoreProperty] : nil;

NSDictionary *orm = nil;
if ([self respondsToSelector:@selector(DB_orm)]) {
Expand Down

0 comments on commit c0ee19f

Please sign in to comment.