ZSWTappableLabelTappableRegionInfoImpl.h 602 B

12345678910111213141516171819202122
  1. //
  2. // ZSWTappableLabelTappableRegionInfoImpl.h
  3. // ZSWTappableLabel
  4. //
  5. // Copyright (c) 2019 Zachary West. All rights reserved.
  6. //
  7. // MIT License
  8. // https://github.com/zacwest/ZSWTappableLabel
  9. //
  10. #import <Foundation/Foundation.h>
  11. #import "../ZSWTappableLabel.h"
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface ZSWTappableLabelTappableRegionInfoImpl : NSObject <ZSWTappableLabelTappableRegionInfo>
  14. - (instancetype)initWithFrame:(CGRect)frame
  15. attributes:(NSDictionary<NSAttributedStringKey, id> *)attributes
  16. containerView:(UIView *)containerView;
  17. @end
  18. NS_ASSUME_NONNULL_END