Skip to content

Commit

Permalink
fix(ios): warnings on navButtons
Browse files Browse the repository at this point in the history
refs TIMOB-26973
  • Loading branch information
drauggres committed May 13, 2019
1 parent fa3b75e commit 2f3ef0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion iphone/TitaniumKit/TitaniumKit/Sources/API/TiUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ typedef enum {

+ (void)applyConstraintToView:(TiUIView *)view forProxy:(TiViewProxy *)proxy withBounds:(CGRect)bounds;

+ (NSString *)composeAccessibilityIdentifier:(TiUIView *)view;
+ (NSString *)composeAccessibilityIdentifier:(id)view;

+ (CGRect)viewPositionRect:(UIView *)view;

Expand Down
2 changes: 1 addition & 1 deletion iphone/TitaniumKit/TitaniumKit/Sources/API/TiUtils.m
Original file line number Diff line number Diff line change
Expand Up @@ -1420,7 +1420,7 @@ + (void)applyConstraintToView:(TiUIView *)view forProxy:(TiViewProxy *)proxy wit
ApplyConstraintToViewWithBounds([proxy layoutProperties], view, bounds);
}

+ (NSString *)composeAccessibilityIdentifier:(TiUIView *)view
+ (NSString *)composeAccessibilityIdentifier:(id)view
{
NSString *accessibilityLabel = view.accessibilityLabel;
NSString *accessibilityValue = view.accessibilityValue;
Expand Down

0 comments on commit 2f3ef0c

Please sign in to comment.