File tree Expand file tree Collapse file tree
R.objc.xcworkspace/xcshareddata Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99Pod ::Spec . new do |s |
1010
1111 s . name = 'R.objc'
12- s . version = '0.7.0 '
12+ s . version = '0.7.1 '
1313 s . summary = 'Get autocompleted localizable strings and asset catalogue images names'
1414 s . description = <<-DESC
1515Freely inspired by R.swift: get autocompleted localizable strings and asset catalogue images names.
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+ <plist version =" 1.0" >
4+ <dict >
5+ <key >IDEDidComputeMac32BitWarning </key >
6+ <true />
7+ </dict >
8+ </plist >
Original file line number Diff line number Diff line change @@ -192,21 +192,9 @@ - (NSString*) typeForThemeConstantValue:(id)value
192192 {
193193 return @" UIFont*" ;
194194 }
195- if ([value hasPrefix: SIZE_IDENTIFIER])
195+ if ([value hasPrefix: SIZE_IDENTIFIER] || [value hasPrefix: POINT_IDENTIFIER] || [value hasPrefix: RECT_IDENTIFIER] || [value hasPrefix: EDGE_IDENTIFIER] )
196196 {
197- return @" CGSize" ;
198- }
199- if ([value hasPrefix: POINT_IDENTIFIER])
200- {
201- return @" CGPoint" ;
202- }
203- if ([value hasPrefix: RECT_IDENTIFIER])
204- {
205- return @" CGRect" ;
206- }
207- if ([value hasPrefix: EDGE_IDENTIFIER])
208- {
209- return @" UIEdgeInsets" ;
197+ return @" NSValue*" ;
210198 }
211199 return @" NSString*" ;
212200 }
You can’t perform that action at this time.
0 commit comments