Skip to content

Commit

Permalink
Remove version change, use instancetype as return type for custom ini…
Browse files Browse the repository at this point in the history
…tializer
  • Loading branch information
Matt Bowman committed Nov 27, 2013
1 parent 897bf5f commit 78f4980
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SWTableViewCell.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/CEWendel/SWTableViewCell'
s.summary = 'UITableViewCell subclass that implements a swipeable content view which exposes utility buttons.'
s.license = 'MIT'
s.source = { :git => 'https://github.com/CEWendel/SWTableViewCell.git', :tag => '1.0.0' }
s.source = { :git => 'https://github.com/CEWendel/SWTableViewCell.git', :tag => '0.1.4' }
s.source_files = 'SWTableViewCell/PodFiles/*.{h,m}'
s.platform = :ios
s.ios.deployment_target = '6.1'
Expand Down
2 changes: 1 addition & 1 deletion SWTableViewCell/PodFiles/SWTableViewCell.m
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ @implementation SWTableViewCell

#pragma mark Initializers

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier containingTableView:(UITableView *)containingTableView leftUtilityButtons:(NSArray *)leftUtilityButtons rightUtilityButtons:(NSArray *)rightUtilityButtons
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier containingTableView:(UITableView *)containingTableView leftUtilityButtons:(NSArray *)leftUtilityButtons rightUtilityButtons:(NSArray *)rightUtilityButtons
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self)
Expand Down

0 comments on commit 78f4980

Please sign in to comment.