iOS 模仿苹果官方本地通知

iOS 模仿苹果官方本地通知_第1张图片
图片发自App

二话不说,先上代码,下午我再娓娓道来实现方法吧
.h

//
//  SecondViewController.h
//  NotificationAnimationView
//
//  Created by xiāo yáng on 2019/8/8.
//  Copyright © 2019 ccb. All rights reserved.
//

#import 

@interface SecondViewController : UIViewController


@end


.m

//
//  SecondViewController.m
//  NotificationAnimationView
//
//  Created by xiāo yáng on 2019/8/8.
//  Copyright © 2019 ccb. All rights reserved.
//

#import "SecondViewController.h"
#import "NotificationAnimationView.h"

@interface SecondViewController ()
@property (nonatomic , strong) NotificationAnimationView *notificationAnimationView;
@end

@implementation SecondViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor=[UIColor systemGreenColor];
    UIBlurEffect *effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
    if (!_notificationAnimationView) {
        _notificationAnimationView = [[NotificationAnimationView alloc]initWithEffect:effect];
    }
    _notificationAnimationView.delegate=self;
    [self.view addSubview:_notificationAnimationView];
    
    // Do any additional setup after loading the view.
}
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    dispatch_async(dispatch_get_main_queue(), ^{
        [self.notificationAnimationView ShowNoticeAnimationView:@"苹果官方通知" NoticeContent:@"你好,你做的通知和我们的通知相似度接近100%,中国民生银行,招商银行,河北银行,包商银行,大家保险以及21世纪不动产送来贺电!" AnimationTime:4.0 FixedHeight:YES];
    });
    
}
#pragma mark - delegate
-(void)StartNotificationAnimation
{
    NSLog(@"+++++++++++++++++++++++");
}
-(void)EndNotificationAnimation
{
    NSLog(@"-----------------------");
}
@end

详情请走GitHub,记得先给我星星✨,在看我的源代码
https://github.com/xiaoyang-iOS/NotificationAnimationView.git

你可能感兴趣的:(iOS 模仿苹果官方本地通知)