代码笔记水波效果
Posted 菜鸟and小白
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了代码笔记水波效果相关的知识,希望对你有一定的参考价值。
一,效果图。
二,工程图。
三,代码。
ViewController.h
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
@end
ViewController.m
#import "ViewController.h"
//加入头文件
#import "VWWWaterView.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
VWWWaterView *waterView = [[VWWWaterView alloc]initWithFrame:self.view.bounds];
[self.view addSubview:waterView];
}
以上是关于代码笔记水波效果的主要内容,如果未能解决你的问题,请参考以下文章