摘要:
1) 网络访问请求:中文空格字符编码/解码 stringByAddingPercentEscapesUsingEncoding(只对 `#%^{}[]|\" 加空格共14个字符编码,不包括”&?”等符号), ios9将淘汰,建议用stringByAddingPercentEncodin... 阅读全文
摘要:
在百度地图的学习过程中,发现里面有一个不错的方法,怎么实现的呢?来分享一下!- (void)viewDidLoad{ [super viewDidLoad]; _demoNameArray = [[NSArray alloc]initWithObjects: @"基本地图功能... 阅读全文
摘要:
NSString *str = [array componentsJoinedByString:@","]; 阅读全文
摘要:
- (IBAction)btnClick:(id)sender { UIActionSheet *action = [[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:@"取消" destructiveB... 阅读全文
摘要:
UITableView用途广泛,而且多样化,其中有一些不太常用,用到的话需要去查资料,今天边用边记录下来 *第一发:UITableViewCell 分割线 1. 分割线样式 [self.tableView setSeparatorStyle:UITableViewCellSeparatorStyle 阅读全文
摘要:
项目中很多地方会出现弹出框框,来做个判断基本方法如下 UIAlertController *alertC = [UIAlertController alertControllerWithTitle:@"友情提示" message:@"是否确定退出程序" preferredStyle:UIAlertC... 阅读全文
摘要:
CGSize maxSize = CGSizeMake(ScreenW, MAXFLOAT); //设置一个行高上限 NSDictionary *attribute = @{NSFontAttributeName:self.subtitleLabel.font}; CGSize subtitl... 阅读全文
摘要:
做百度地图是否显示路况信息,用到两种状态的图片第一种方法:用Bool进行标记声明一个 Bool _isRoad;- (void)roadBtnAction:(UIButton *)sender{ if (!_isRoad) { [_roadBtn setBackgroundImage:[UI... 阅读全文
摘要:
单例究竟怎么传值?今天终于会了.h@interface MySharedClass : NSObject@property (nonatomic, copy) NSString *sharedString;+ (MySharedClass *)sharedInstance;@end.m@implem... 阅读全文
摘要:
第一步:导入afn库第二步:在pch中添加#import #import #define AFNETWORKING_ALLOW_INVALID_SSL_CERTIFICATES第三步: AFSecurityPolicy *securityPolicy = [AFSecurityPolicy de... 阅读全文