首页 > 代码库 > 点击任何处,弹出另外一个界面(出行搭档)
点击任何处,弹出另外一个界面(出行搭档)
点击任何处的效果图:
文件目录:
MoreView.h
#import <UIKit/UIKit.h>@interface MoreView : UIView@end
MoreView.m
#import "MoreView.h"@implementation MoreView- (id)initWithFrame:(CGRect)frame{ self = [super initWithFrame:frame]; if (self) { // Initialization code //设计背景色为红色 self.backgroundColor=[UIColor redColor]; } return self;}
RootViewController.h
#import <UIKit/UIKit.h>//头文件#import "MoreView.h"@interface RootViewController : UIViewController{ //是否点击 BOOL isSwitch; //红色UIView界面 MoreView *moreView;}@end
RootViewController.m
//点击任何处,显示出红色的UIView-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ if (isSwitch) { [moreView removeFromSuperview]; isSwitch=NO; }else{ moreView=[[MoreView alloc]initWithFrame:CGRectMake(10, 100, 200, 50)]; [self.view addSubview:moreView]; isSwitch=YES; } }
点击任何处,弹出另外一个界面(出行搭档)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。