File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = 'TOWebViewController'
3
- s . version = '2.0.9 '
3
+ s . version = '2.0.10 '
4
4
s . license = { :type => 'MIT' , :file => 'LICENSE' }
5
5
s . summary = 'An inline browser view controller that allows users to view and navigate web pages from within an app.'
6
6
s . homepage = 'https://github.com/TimOliver/TOWebViewController'
7
7
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 ' }
9
9
s . platform = :ios , '5.0'
10
10
11
11
s . source_files = 'TOWebViewController/**/*.{h,m}'
Original file line number Diff line number Diff line change 120
120
121
121
/* *
122
122
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.
123
125
*/
124
- @property (nonatomic ,strong ) UIColor *buttonTintColor UI_APPEARANCE_SELECTOR;
126
+ @property (nonatomic ,strong ) UIColor *buttonTintColor; // UI_APPEARANCE_SELECTOR
125
127
126
128
/* *
127
129
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.
128
132
*/
129
- @property (nonatomic ,assign ) CGFloat buttonBevelOpacity UI_APPEARANCE_SELECTOR;
133
+ @property (nonatomic ,assign ) CGFloat buttonBevelOpacity; // UI_APPEARANCE_SELECTOR
130
134
131
135
@end
You can’t perform that action at this time.
0 commit comments