iOS开发-自定义UIAlterView(iOS 7)

App中不可能少了弹框,弹框是交互的必要形式,使用起来也非常简单,不过最近需要自定义一个弹框,虽然iOS本身的弹框已经能满足大部分的需求,但是不可避免还是需要做一些自定义的工作。iOS7之前是可以自定义AlterView的,就是继承一下UIAlterView,然后初始化的时候通过addSubview添加自定义的View,但是iOS7之后这样做就不行了,不过还好有开源项目可以解决这个问题。

iOS默认弹框

viewDidLoad中添加两个按钮,代码如下:

 

    UIButton  *orignalBtn=[[UIButton alloc]initWithFrame:CGRectMake(100, 40, 100, 50)];[orignalBtn setBackgroundColor:[UIColor greenColor]];[orignalBtn setTitle:@"iOS弹框" forState:UIControlStateNormal];[orignalBtn addTarget:self action:@selector(orignalShow) forControlEvents:UIControlEventTouchUpInside];[self.view addSubview:orignalBtn];UIButton  *customlBtn=[[UIButton alloc]initWithFrame:CGRectMake(100, 140, 100, 50)];[customlBtn setBackgroundColor:[UIColor redColor]];[customlBtn setTitle:@"自定义弹框" forState:UIControlStateNormal];[customlBtn addTarget:self action:@selector(customShow) forControlEvents:UIControlEventTouchUpInside];[self.view addSubview:customlBtn];

 

 响应默认弹框事件:

-(void)orignalShow{UIAlertView *alterView=[[UIAlertView alloc]initWithTitle:@"提示" message:@"博客园-Fly_Elephant" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];[alterView show];
}

  效果如下:

 

自定义弹框

主要解决iOS7之后的系统无法自定义弹框的问题,使用开源项目,项目地址:https://github.com/wimagguc/ios-custom-alertview,其实就是自定义了一个类:

CustomIOSAlertView.h

#import <UIKit/UIKit.h>@protocol CustomIOSAlertViewDelegate- (void)customIOS7dialogButtonTouchUpInside:(id)alertView clickedButtonAtIndex:(NSInteger)buttonIndex;@end@interface CustomIOSAlertView : UIView<CustomIOSAlertViewDelegate>@property (nonatomic, retain) UIView *parentView;    // The parent view this 'dialog' is attached to
@property (nonatomic, retain) UIView *dialogView;    // Dialog's container view
@property (nonatomic, retain) UIView *containerView; // Container within the dialog (place your ui elements here)@property (nonatomic, assign) id<CustomIOSAlertViewDelegate> delegate;
@property (nonatomic, retain) NSArray *buttonTitles;
@property (nonatomic, assign) BOOL useMotionEffects;@property (copy) void (^onButtonTouchUpInside)(CustomIOSAlertView *alertView, int buttonIndex) ;- (id)init;/*!DEPRECATED: Use the [CustomIOSAlertView init] method without passing a parent view.*/
- (id)initWithParentView: (UIView *)_parentView __attribute__ ((deprecated));- (void)show;
- (void)close;- (IBAction)customIOS7dialogButtonTouchUpInside:(id)sender;
- (void)setOnButtonTouchUpInside:(void (^)(CustomIOSAlertView *alertView, int buttonIndex))onButtonTouchUpInside;- (void)deviceOrientationDidChange: (NSNotification *)notification;
- (void)dealloc;@end

CustomIOSAlertView.m

#import "CustomIOSAlertView.h"
#import <QuartzCore/QuartzCore.h>const static CGFloat kCustomIOSAlertViewDefaultButtonHeight       = 50;
const static CGFloat kCustomIOSAlertViewDefaultButtonSpacerHeight = 1;
const static CGFloat kCustomIOSAlertViewCornerRadius              = 7;
const static CGFloat kCustomIOS7MotionEffectExtent                = 10.0;@implementation CustomIOSAlertViewCGFloat buttonHeight = 0;
CGFloat buttonSpacerHeight = 0;@synthesize parentView, containerView, dialogView, onButtonTouchUpInside;
@synthesize delegate;
@synthesize buttonTitles;
@synthesize useMotionEffects;- (id)initWithParentView: (UIView *)_parentView
{self = [self init];if (_parentView) {self.frame = _parentView.frame;self.parentView = _parentView;}return self;
}- (id)init
{self = [super init];if (self) {self.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height);delegate = self;useMotionEffects = false;buttonTitles = @[@"Close"];[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deviceOrientationDidChange:) name:UIDeviceOrientationDidChangeNotification object:nil];[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];}return self;
}// Create the dialog view, and animate opening the dialog
- (void)show
{dialogView = [self createContainerView];dialogView.layer.shouldRasterize = YES;dialogView.layer.rasterizationScale = [[UIScreen mainScreen] scale];self.layer.shouldRasterize = YES;self.layer.rasterizationScale = [[UIScreen mainScreen] scale];#if (defined(__IPHONE_7_0))if (useMotionEffects) {[self applyMotionEffects];}
#endifself.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0];[self addSubview:dialogView];// Can be attached to a view or to the top most window// Attached to a view:if (parentView != NULL) {[parentView addSubview:self];// Attached to the top most window} else {// On iOS7, calculate with orientationif (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_7_1) {UIInterfaceOrientation interfaceOrientation = [[UIApplication sharedApplication] statusBarOrientation];switch (interfaceOrientation) {case UIInterfaceOrientationLandscapeLeft:self.transform = CGAffineTransformMakeRotation(M_PI * 270.0 / 180.0);break;case UIInterfaceOrientationLandscapeRight:self.transform = CGAffineTransformMakeRotation(M_PI * 90.0 / 180.0);break;case UIInterfaceOrientationPortraitUpsideDown:self.transform = CGAffineTransformMakeRotation(M_PI * 180.0 / 180.0);break;default:break;}[self setFrame:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];// On iOS8, just place the dialog in the middle} else {CGSize screenSize = [self countScreenSize];CGSize dialogSize = [self countDialogSize];CGSize keyboardSize = CGSizeMake(0, 0);dialogView.frame = CGRectMake((screenSize.width - dialogSize.width) / 2, (screenSize.height - keyboardSize.height - dialogSize.height) / 2, dialogSize.width, dialogSize.height);}[[[[UIApplication sharedApplication] windows] firstObject] addSubview:self];}dialogView.layer.opacity = 0.5f;dialogView.layer.transform = CATransform3DMakeScale(1.3f, 1.3f, 1.0);[UIView animateWithDuration:0.2f delay:0.0 options:UIViewAnimationOptionCurveEaseInOutanimations:^{self.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.4f];dialogView.layer.opacity = 1.0f;dialogView.layer.transform = CATransform3DMakeScale(1, 1, 1);}completion:NULL];}// Button has been touched
- (IBAction)customIOS7dialogButtonTouchUpInside:(id)sender
{if (delegate != NULL) {[delegate customIOS7dialogButtonTouchUpInside:self clickedButtonAtIndex:[sender tag]];}if (onButtonTouchUpInside != NULL) {onButtonTouchUpInside(self, (int)[sender tag]);}
}// Default button behaviour
- (void)customIOS7dialogButtonTouchUpInside: (CustomIOSAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{NSLog(@"Button Clicked! %d, %d", (int)buttonIndex, (int)[alertView tag]);[self close];
}// Dialog close animation then cleaning and removing the view from the parent
- (void)close
{CATransform3D currentTransform = dialogView.layer.transform;if (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_7_1) {CGFloat startRotation = [[dialogView valueForKeyPath:@"layer.transform.rotation.z"] floatValue];CATransform3D rotation = CATransform3DMakeRotation(-startRotation + M_PI * 270.0 / 180.0, 0.0f, 0.0f, 0.0f);dialogView.layer.transform = CATransform3DConcat(rotation, CATransform3DMakeScale(1, 1, 1));}dialogView.layer.opacity = 1.0f;[UIView animateWithDuration:0.2f delay:0.0 options:UIViewAnimationOptionTransitionNoneanimations:^{self.backgroundColor = [UIColor colorWithRed:0.0f green:0.0f blue:0.0f alpha:0.0f];dialogView.layer.transform = CATransform3DConcat(currentTransform, CATransform3DMakeScale(0.6f, 0.6f, 1.0));dialogView.layer.opacity = 0.0f;}completion:^(BOOL finished) {for (UIView *v in [self subviews]) {[v removeFromSuperview];}[self removeFromSuperview];}];
}- (void)setSubView: (UIView *)subView
{containerView = subView;
}// Creates the container view here: create the dialog, then add the custom content and buttons
- (UIView *)createContainerView
{if (containerView == NULL) {containerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 300, 150)];}CGSize screenSize = [self countScreenSize];CGSize dialogSize = [self countDialogSize];// For the black background[self setFrame:CGRectMake(0, 0, screenSize.width, screenSize.height)];// This is the dialog's container; we attach the custom content and the buttons to this oneUIView *dialogContainer = [[UIView alloc] initWithFrame:CGRectMake((screenSize.width - dialogSize.width) / 2, (screenSize.height - dialogSize.height) / 2, dialogSize.width, dialogSize.height)];// First, we style the dialog to match the iOS7 UIAlertView >>>CAGradientLayer *gradient = [CAGradientLayer layer];gradient.frame = dialogContainer.bounds;gradient.colors = [NSArray arrayWithObjects:(id)[[UIColor colorWithRed:218.0/255.0 green:218.0/255.0 blue:218.0/255.0 alpha:1.0f] CGColor],(id)[[UIColor colorWithRed:233.0/255.0 green:233.0/255.0 blue:233.0/255.0 alpha:1.0f] CGColor],(id)[[UIColor colorWithRed:218.0/255.0 green:218.0/255.0 blue:218.0/255.0 alpha:1.0f] CGColor],nil];CGFloat cornerRadius = kCustomIOSAlertViewCornerRadius;gradient.cornerRadius = cornerRadius;[dialogContainer.layer insertSublayer:gradient atIndex:0];dialogContainer.layer.cornerRadius = cornerRadius;dialogContainer.layer.borderColor = [[UIColor colorWithRed:198.0/255.0 green:198.0/255.0 blue:198.0/255.0 alpha:1.0f] CGColor];dialogContainer.layer.borderWidth = 1;dialogContainer.layer.shadowRadius = cornerRadius + 5;dialogContainer.layer.shadowOpacity = 0.1f;dialogContainer.layer.shadowOffset = CGSizeMake(0 - (cornerRadius+5)/2, 0 - (cornerRadius+5)/2);dialogContainer.layer.shadowColor = [UIColor blackColor].CGColor;dialogContainer.layer.shadowPath = [UIBezierPath bezierPathWithRoundedRect:dialogContainer.bounds cornerRadius:dialogContainer.layer.cornerRadius].CGPath;// There is a line above the buttonUIView *lineView = [[UIView alloc] initWithFrame:CGRectMake(0, dialogContainer.bounds.size.height - buttonHeight - buttonSpacerHeight, dialogContainer.bounds.size.width, buttonSpacerHeight)];lineView.backgroundColor = [UIColor colorWithRed:198.0/255.0 green:198.0/255.0 blue:198.0/255.0 alpha:1.0f];[dialogContainer addSubview:lineView];// ^^^// Add the custom container if there is any[dialogContainer addSubview:containerView];// Add the buttons too[self addButtonsToView:dialogContainer];return dialogContainer;
}// Helper function: add buttons to container
- (void)addButtonsToView: (UIView *)container
{if (buttonTitles==NULL) { return; }CGFloat buttonWidth = container.bounds.size.width / [buttonTitles count];for (int i=0; i<[buttonTitles count]; i++) {UIButton *closeButton = [UIButton buttonWithType:UIButtonTypeCustom];[closeButton setFrame:CGRectMake(i * buttonWidth, container.bounds.size.height - buttonHeight, buttonWidth, buttonHeight)];[closeButton addTarget:self action:@selector(customIOS7dialogButtonTouchUpInside:) forControlEvents:UIControlEventTouchUpInside];[closeButton setTag:i];[closeButton setTitle:[buttonTitles objectAtIndex:i] forState:UIControlStateNormal];[closeButton setTitleColor:[UIColor colorWithRed:0.0f green:0.5f blue:1.0f alpha:1.0f] forState:UIControlStateNormal];[closeButton setTitleColor:[UIColor colorWithRed:0.2f green:0.2f blue:0.2f alpha:0.5f] forState:UIControlStateHighlighted];[closeButton.titleLabel setFont:[UIFont boldSystemFontOfSize:14.0f]];[closeButton.layer setCornerRadius:kCustomIOSAlertViewCornerRadius];[container addSubview:closeButton];}
}// Helper function: count and return the dialog's size
- (CGSize)countDialogSize
{CGFloat dialogWidth = containerView.frame.size.width;CGFloat dialogHeight = containerView.frame.size.height + buttonHeight + buttonSpacerHeight;return CGSizeMake(dialogWidth, dialogHeight);
}// Helper function: count and return the screen's size
- (CGSize)countScreenSize
{if (buttonTitles!=NULL && [buttonTitles count] > 0) {buttonHeight       = kCustomIOSAlertViewDefaultButtonHeight;buttonSpacerHeight = kCustomIOSAlertViewDefaultButtonSpacerHeight;} else {buttonHeight = 0;buttonSpacerHeight = 0;}CGFloat screenWidth = [UIScreen mainScreen].bounds.size.width;CGFloat screenHeight = [UIScreen mainScreen].bounds.size.height;// On iOS7, screen width and height doesn't automatically follow orientationif (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_7_1) {UIInterfaceOrientation interfaceOrientation = [[UIApplication sharedApplication] statusBarOrientation];if (UIInterfaceOrientationIsLandscape(interfaceOrientation)) {CGFloat tmp = screenWidth;screenWidth = screenHeight;screenHeight = tmp;}}return CGSizeMake(screenWidth, screenHeight);
}#if (defined(__IPHONE_7_0))
// Add motion effects
- (void)applyMotionEffects {if (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_6_1) {return;}UIInterpolatingMotionEffect *horizontalEffect = [[UIInterpolatingMotionEffect alloc] initWithKeyPath:@"center.x"type:UIInterpolatingMotionEffectTypeTiltAlongHorizontalAxis];horizontalEffect.minimumRelativeValue = @(-kCustomIOS7MotionEffectExtent);horizontalEffect.maximumRelativeValue = @( kCustomIOS7MotionEffectExtent);UIInterpolatingMotionEffect *verticalEffect = [[UIInterpolatingMotionEffect alloc] initWithKeyPath:@"center.y"type:UIInterpolatingMotionEffectTypeTiltAlongVerticalAxis];verticalEffect.minimumRelativeValue = @(-kCustomIOS7MotionEffectExtent);verticalEffect.maximumRelativeValue = @( kCustomIOS7MotionEffectExtent);UIMotionEffectGroup *motionEffectGroup = [[UIMotionEffectGroup alloc] init];motionEffectGroup.motionEffects = @[horizontalEffect, verticalEffect];[dialogView addMotionEffect:motionEffectGroup];
}
#endif- (void)dealloc
{[[UIDevice currentDevice] endGeneratingDeviceOrientationNotifications];[[NSNotificationCenter defaultCenter] removeObserver:self name:UIDeviceOrientationDidChangeNotification object:nil];[[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];[[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];
}// Rotation changed, on iOS7
- (void)changeOrientationForIOS7 {UIInterfaceOrientation interfaceOrientation = [[UIApplication sharedApplication] statusBarOrientation];CGFloat startRotation = [[self valueForKeyPath:@"layer.transform.rotation.z"] floatValue];CGAffineTransform rotation;switch (interfaceOrientation) {case UIInterfaceOrientationLandscapeLeft:rotation = CGAffineTransformMakeRotation(-startRotation + M_PI * 270.0 / 180.0);break;case UIInterfaceOrientationLandscapeRight:rotation = CGAffineTransformMakeRotation(-startRotation + M_PI * 90.0 / 180.0);break;case UIInterfaceOrientationPortraitUpsideDown:rotation = CGAffineTransformMakeRotation(-startRotation + M_PI * 180.0 / 180.0);break;default:rotation = CGAffineTransformMakeRotation(-startRotation + 0.0);break;}[UIView animateWithDuration:0.2f delay:0.0 options:UIViewAnimationOptionTransitionNoneanimations:^{dialogView.transform = rotation;}completion:nil];}// Rotation changed, on iOS8
- (void)changeOrientationForIOS8: (NSNotification *)notification {CGFloat screenWidth = [UIScreen mainScreen].bounds.size.width;CGFloat screenHeight = [UIScreen mainScreen].bounds.size.height;[UIView animateWithDuration:0.2f delay:0.0 options:UIViewAnimationOptionTransitionNoneanimations:^{CGSize dialogSize = [self countDialogSize];CGSize keyboardSize = [[[notification userInfo] objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;self.frame = CGRectMake(0, 0, screenWidth, screenHeight);dialogView.frame = CGRectMake((screenWidth - dialogSize.width) / 2, (screenHeight - keyboardSize.height - dialogSize.height) / 2, dialogSize.width, dialogSize.height);}completion:nil];}// Handle device orientation changes
- (void)deviceOrientationDidChange: (NSNotification *)notification
{// If dialog is attached to the parent view, it probably wants to handle the orientation change itselfif (parentView != NULL) {return;}if (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_7_1) {[self changeOrientationForIOS7];} else {[self changeOrientationForIOS8:notification];}
}// Handle keyboard show/hide changes
- (void)keyboardWillShow: (NSNotification *)notification
{CGSize screenSize = [self countScreenSize];CGSize dialogSize = [self countDialogSize];CGSize keyboardSize = [[[notification userInfo] objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;UIInterfaceOrientation interfaceOrientation = [[UIApplication sharedApplication] statusBarOrientation];if (UIInterfaceOrientationIsLandscape(interfaceOrientation)) {CGFloat tmp = keyboardSize.height;keyboardSize.height = keyboardSize.width;keyboardSize.width = tmp;}[UIView animateWithDuration:0.2f delay:0.0 options:UIViewAnimationOptionTransitionNoneanimations:^{dialogView.frame = CGRectMake((screenSize.width - dialogSize.width) / 2, (screenSize.height - keyboardSize.height - dialogSize.height) / 2, dialogSize.width, dialogSize.height);}completion:nil];
}- (void)keyboardWillHide: (NSNotification *)notification
{CGSize screenSize = [self countScreenSize];CGSize dialogSize = [self countDialogSize];[UIView animateWithDuration:0.2f delay:0.0 options:UIViewAnimationOptionTransitionNoneanimations:^{dialogView.frame = CGRectMake((screenSize.width - dialogSize.width) / 2, (screenSize.height - dialogSize.height) / 2, dialogSize.width, dialogSize.height);}completion:nil];
}@end

调用代码:

-(void)customShow{CustomIOSAlertView *alertView = [[CustomIOSAlertView alloc] init];[alertView setContainerView:[self customView]];[alertView setButtonTitles:[NSMutableArray arrayWithObjects:@"取消", @"确定", nil]];[alertView setDelegate:self];[alertView setOnButtonTouchUpInside:^(CustomIOSAlertView *alertView, int buttonIndex) {NSString *result=alertView.buttonTitles[buttonIndex];NSLog(@"点击了%@按钮",result);[alertView close];}];[alertView setUseMotionEffects:true];[alertView show];}- (UIView *)customView
{UIView *customView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 240, 160)];UILabel *tip=[[UILabel alloc]initWithFrame:CGRectMake(100, 10, 50, 30)];[tip setText:@"提示"];[customView addSubview:tip];UILabel *content=[[UILabel alloc]initWithFrame:CGRectMake(10, 60, 210, 30)];[content setText:@"http://www.cnblogs.com/xiaofeixiang"];[content setFont:[UIFont systemFontOfSize:12]];[customView addSubview:content];return customView;
}

 效果如下:

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/544966.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

jsp中redirect和forward的区别

在网上看到一些帖子&#xff0c;总结了一些区别&#xff0c;可以从以下几个方面来看&#xff1a;1.从地址栏显示来说 forward是服务器请求资源,服务器直接访问目标地址的URL,把那个URL的响应内容读取过来,然后把这些内容再发给浏览器.浏览器根本不知道服务器发送的内容从哪里来…

Spring 事务失效的 8 大场景,面试官直呼666...

前几天发了一篇文章里面有一个关于事务失效的问题&#xff1a;用 Spring 的 Transactional 注解控制事务有哪些不生效的场景&#xff1f;其中有个热心粉丝留言分享了下&#xff0c;我觉得总结得有点经验&#xff0c;给置顶了&#xff1a;但是我觉得还是总结得不够全&#xff0c…

python 示例_Python条件类| release()方法与示例

python 示例Python Condition.release()方法 (Python Condition.release() Method) release() is an inbuilt method of the Condition class of the threading module in Python. release()是Python中线程模块的Condition类的内置方法。 Condition class implements conditio…

Java BigInteger类| hashCode()方法与示例

BigInteger类hashCode()方法 (BigInteger Class hashCode() method) hashCode() method is available in java.math package. hashCode()方法在java.math包中可用。 hashCode() method is used to return the hash code value of this BigInteger. hashCode()方法用于返回此Big…

认真聊一下MySQL索引的底层实现!

前言当我们发现SQL执行很慢的时候&#xff0c;自然而然想到的就是加索引&#xff0c;当然他也是高频的面试问题&#xff0c;所以今天我们一起来学习一下MySQL索引的底层实现&#xff1a;B树。树简介、树种类B-树、B树简介B树插入B树查找B树删除B树经典面试题树的简介树的简介树…

js的四舍五入

Math.ceil求最小的整数但不小于本身. Math.round求本身的四舍五入。 Math.floor求最大的整数但不大于本身.

Java BigInteger类| bitCount()方法与示例

BigInteger类的bitCount()方法 (BigInteger Class bitCount() method) bitCount() method is available in java.math package. bitCount()方法在java.math包中可用。 bitCount() method is used to count the number of bits in 2’s complement denotation of this BigIntege…

head first python(第三章)–学习笔记

1.介绍基础文件&#xff0c;输入&#xff0c;输出 open() 打开文件&#xff0c;一次传入一行数据&#xff0c;可以结合for循环和readline()来使用 close() 用来关闭open打开的文件 the_file open(sketch.txt)the_file.close()例子&#xff1a; >>> data open(/root/…

最新大厂面试真题集锦

年后又是一波求职季&#xff0c;正是“金三银四”这个求职黄金期&#xff0c;很多人扎堆在这个时间段跳槽&#xff0c;找工作&#xff0c;程序员也不例外。春节刚过&#xff0c;各公司企业都开始启动了新一年的招聘计划&#xff0c;招聘岗位倍增&#xff0c;求职人数远超于岗位…

java.lang.IllegalThreadStateException 线程运行报错

写程序线程再运行第二遍的时候报java.lang.IllegalThreadStateException。发现一个Thread不能重复用start方法。 解决方法&#xff1a; 1、将extends Thread线程类改成implements Runnable&#xff0c;或者将Thread a new Thread改为Runnable a new Runnable&#xff1b; …

使用OpenCV在Python中进行人脸和眼睛检测

Modules Used: 使用的模块&#xff1a; python-opencv(cv2)python-opencv(cv2) python-opencv(cv2) Opencv(Open source computer vision) is a python library that will help us to solve computer vision problems. Opencv(开源计算机视觉)是一个Python库&#xff0c;可帮…

Java打造一款SSH客户端,已开源!

最近由于项目需求&#xff0c;项目中需要实现一个WebSSH连接终端的功能&#xff0c;由于自己第一次做这类型功能&#xff0c;所以首先上了GitHub找了找有没有现成的轮子可以拿来直接用&#xff0c;当时看到了很多这方面的项目&#xff0c;例如&#xff1a;GateOne、webssh、she…

html中可以自定义属性,,,妈的竟然才知道..

html中可以自定义属性,,,妈的竟然才知道.. <input userinfo"没见过帅哥呀" />

Js实现动态插入删除文本框

自己做了个Js插入文本框的例子&#xff0c;扔上别忘了。 <html><head><title>Untitled Document</title><meta http-equiv"Content-Type" content"text/html; charsetutf-8"><script language"javascript"&g…

ruby 数组元素替换_从Ruby中的集合中删除并替换元素

ruby 数组元素替换Ruby has various specific methods to fulfil specific tasks. At several places, you may need to replace or delete an element from an instance of set class provided that there are certain elements present in the Set. You can perform deletion…

我去,这几个Linux指令太装B了|动图展示

1. sl先看一下呼啸而过的火车&#xff1b;安装指令如下&#xff1b;sduo apt-get install sl执行结果如下&#xff1a;2. htop图形化Linux系统性能监测工具&#xff0c;屌不屌:安装指令如下:sduo apt-get install htop执行结果如下&#xff1b;3. gcp以前用cp复制文件总是看不懂…

书店POS机--细化迭代2--测试

2019独角兽企业重金招聘Python工程师标准>>> (1) 开始一次新的销售&#xff0c;点击书店POS系统的销售&#xff1a; (2) 进入销售模块之后的界面如下&#xff1a; (3)逐条录入商品条目(根据商品编号)&#xff0c;并修改数量。确认无误之后点击“确认”按钮&#x…

XML文件的写入和读取(解析)基于DOM4J工具

这两天做了个天气的小应用&#xff0c;需要用到百度的天气api&#xff0c;获取到的信息是一个xml文档。 所以就从网上查了一下相关的知识&#xff0c;就是关于怎么去解析出来xml文件的信息。 先放一个我自己写的例子&#xff0c;加了点注释&#xff0c;贴这里吧。 package cn…

Google Guava,牛逼的脚手架

01、前世今生你好呀&#xff0c;我是 Guava。1995 年的时候&#xff0c;我的“公明”哥哥——Java 出生了。经过 20 年的发展&#xff0c;他已经成为世界上最流行的编程语言了&#xff0c;请允许我有失公允的把“之一”给去了。虽然他时常遭受着各种各样的吐槽&#xff0c;但他…

ruby 将字符转数字计算_Ruby程序计算一个数字中的位数

ruby 将字符转数字计算计算位数 (Counting the number of digits) Ruby does not provide you any predefined direct method through which you can find the number of digits in a number. Though one method can be implemented by converting the number into a string an…