Skip to content

very similar with UIAlertView,but JLAlertView is not subclass of UIAlertView

License

Notifications You must be signed in to change notification settings

jianlong108/JLAlertView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JLAlertView

very similar with UIAlertView,but JLAlertView is not subclass of UIAlertView

- (void)entryAPPSTORE{
  UIAlertView *ALERT1 = [[UIAlertView alloc]initWithTitle:@"第一个" message:@"hello" delegate:self cancelButtonTitle:@"ok" otherButtonTitles:nil];
  [ALERT1 show];

  UIAlertView *ALERT2 = [[UIAlertView alloc]initWithTitle:@"第2个" message:@"ok" delegate:self cancelButtonTitle:@"sure" otherButtonTitles:nil];
  [ALERT2 show];
}
- (void)entryPhotoReader{
  JLAlertView *alert = [[JLAlertView alloc]initWithTitle:@"第一个" message:@"hello" delegate:nil SureButtonTitle:@"ok" otherButtonTitles:nil];
  [alert show];

  JLAlertView *alert1 = [[JLAlertView alloc]initWithTitle:@"第2个" message:@"welcome" delegate:nil SureButtonTitle:@"sure" otherButtonTitles:nil];
  [alert1 show];
}

image

About

very similar with UIAlertView,but JLAlertView is not subclass of UIAlertView

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published