Skip to content

Commit

Permalink
Merge pull request #8255 from AngelkPetkov/TIMOB-23501-FIX
Browse files Browse the repository at this point in the history
[TIMOB-23501] iOS: Allow property to be fetched without getter
  • Loading branch information
hansemannn committed Aug 24, 2016
2 parents e73a80a + debe08f commit 13331cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iphone/Classes/TiUILabelProxy.m
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ -(UIView *)parentViewForChild:(TiViewProxy *)child
return [[(TiUILabel*)[self view] label] superview];
}

-(NSNumber*)ellipsize:(id)unused
-(NSNumber*)ellipsize
{
return NUMINTEGER([[(TiUILabel*)[self view] label] lineBreakMode]);
}

@end

#endif
#endif

0 comments on commit 13331cd

Please sign in to comment.