Skip to content

Commit

Permalink
修复小bug.
Browse files Browse the repository at this point in the history
修复小bug.
  • Loading branch information
huangzhibiao committed Mar 22, 2017
1 parent b06617f commit 0c58b50
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions BGFMDB.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ Pod::Spec.new do |s|
#

s.name = "BGFMDB"
s.version = "1.17"
s.summary = "完美支持iOS大部分类型数据的存储,加入了字典转模型功能模块."
s.version = "1.19"
s.summary = "完美支持iOS大部分类型数据的存储,同时带有"字典转模型"功能模块"

# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
完美支持iOS大部分类型数据的存储,加入了字典转模型功能模块.
完美支持iOS大部分类型数据的存储,同时带有"字典转模型"功能模块
DESC

s.homepage = "https://github.com/huangzhibiao/BGFMDB"
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion BGFMDB/ViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ - (void)viewDidLoad {
存储
*/
[p save];

/**
忽略存储,即忽略掉 user,info,students 这三个变量不存储.
*/
Expand Down Expand Up @@ -306,6 +305,7 @@ - (IBAction)insertAction:(id)sender {
People* p = [self people];
[p save];
Man* m = [Man new];
m.Man_age = 10;
[m save];
}

Expand Down

0 comments on commit 0c58b50

Please sign in to comment.