File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1515 <key >CFBundlePackageType </key >
1616 <string >FMWK </string >
1717 <key >CFBundleShortVersionString </key >
18- <string >1.0.6 </string >
18+ <string >1.0.7 </string >
1919 <key >CFBundleSignature </key >
2020 <string >???? </string >
2121 <key >CFBundleVersion </key >
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = 'YYText'
33 s . summary = 'Powerful text framework for iOS to display and edit rich text.'
4- s . version = '1.0.6 '
4+ s . version = '1.0.7 '
55 s . license = { :type => 'MIT' , :file => 'LICENSE' }
66 s . authors = { 'ibireme' => '[email protected] ' } 77 s . social_media_url = 'http://blog.ibireme.com'
Original file line number Diff line number Diff line change @@ -2421,7 +2421,7 @@ - (void)setFrame:(CGRect)frame {
24212421 CGSize oldSize = self.bounds .size ;
24222422 [super setFrame: frame];
24232423 CGSize newSize = self.bounds .size ;
2424- BOOL changed = _innerContainer.isVerticalForm ? CGSizeEqualToSize (oldSize, newSize) : (oldSize.width != newSize.width );
2424+ BOOL changed = _innerContainer.isVerticalForm ? (oldSize. height != newSize. height ) : (oldSize.width != newSize.width );
24252425 if (changed) {
24262426 [self _updateInnerContainerSize ];
24272427 [self _commitUpdate ];
You can’t perform that action at this time.
0 commit comments