| 12345678910111213141516171819202122232425 |
- //
- // LambohiniViewController.h
- // animatedemo
- //
- // Created by 7yword on 16/7/13.
- // Copyright © 2016年 7yworld. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol LambohiniViewControllerDelegate <NSObject>
- @required
- - (void)lambohiniAnimationFinished;
- @end
- @interface LambohiniViewController : UIViewController<CAAnimationDelegate>
- @property (nonatomic, weak) id<LambohiniViewControllerDelegate> delegate;
- @property (nonatomic, copy) NSString *senderNameStr;
- @property (weak, nonatomic) IBOutlet UILabel *senderNameLabel;
- @end
|