EPISODE #1, 28 Feb 22:30
Pour ce premier épisode d'iOSLibraries, j'ai décidé de vous présenter 2 moyens d'afficher des alertes "stylées" comme la fameuse application Tweetbot.
Duration : 420
Project : https://github.com/ioslibraries/001---Des-Alertes-Tweetbot
1 - YRDropdownView
Github : https://github.com/onemightyroar/YRDropdownView
#import "YRDropdownView.h"
[YRDropdownView showDropdownInView:self.view title:@"Poke !" detail:[NSString stringWithFormat:@"You poked %@.", friendName] animated:YES];
2 - MKInfoPanel
Github : https://github.com/MugunthKumar/MKInfoPanelDemo
#import "MKInfoPanel.h"
[MKInfoPanel showPanelInView:self.view type:MKInfoPanelTypeError title:@"Friend deleted." subtitle:@"Bye bye"hideAfter:2.0f];
[MKInfoPanel showPanelInView:self.view type:MKInfoPanelTypeInfo title:@"Poke !" subtitle:[NSString stringWithFormat:@"You poked %@.", friendName] hideAfter:2.0f];
