Skip to content

Commit abeb679

Browse files
committed
Removed UI_APPEARANCE_SELECTOR as it confuses the appledoc generator.
1 parent c5274f8 commit abeb679

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

TOWebViewController.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Pod::Spec.new do |s|
22
s.name = 'TOWebViewController'
3-
s.version = '2.0.9'
3+
s.version = '2.0.10'
44
s.license = { :type => 'MIT', :file => 'LICENSE' }
55
s.summary = 'An inline browser view controller that allows users to view and navigate web pages from within an app.'
66
s.homepage = 'https://github.com/TimOliver/TOWebViewController'
77
s.author = 'Tim Oliver'
8-
s.source = { :git => 'https://github.com/TimOliver/TOWebViewController.git', :tag => '2.0.9' }
8+
s.source = { :git => 'https://github.com/TimOliver/TOWebViewController.git', :tag => '2.0.10' }
99
s.platform = :ios, '5.0'
1010

1111
s.source_files = 'TOWebViewController/**/*.{h,m}'

TOWebViewController/TOWebViewController.h

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,16 @@
120120

121121
/**
122122
On iOS 6 or below, this can be used to override the default fill color of the navigation button icons.
123+
124+
Conforms to the iOS UIAppearance protocol.
123125
*/
124-
@property (nonatomic,strong) UIColor *buttonTintColor UI_APPEARANCE_SELECTOR;
126+
@property (nonatomic,strong) UIColor *buttonTintColor; //UI_APPEARANCE_SELECTOR
125127

126128
/**
127129
On iOS 6 or below, this overrides the default opacity level of the bevel around the navigation buttons.
130+
131+
Conforms to the iOS UIAppearance protocol.
128132
*/
129-
@property (nonatomic,assign) CGFloat buttonBevelOpacity UI_APPEARANCE_SELECTOR;
133+
@property (nonatomic,assign) CGFloat buttonBevelOpacity; //UI_APPEARANCE_SELECTOR
130134

131135
@end

0 commit comments

Comments
 (0)