摘要: /** * (URL)特殊字符处理 * &-originstring 待传入字符串 * 返回处理过的字符串 */ + (NSString *)SpecialToString:(NSString *)originstring; /** * (URL)特殊字符处理 */ + (NSString *)Sp 阅读全文
posted @ 2017-04-10 10:42 NextXavier 阅读(128) 评论(0) 推荐(0) 编辑
摘要: /** * NSString 拼接声明 * &-original:原始字符串 * &-newstring:待拼接的字符串 * &返回拼接好的新字符串 */ + (NSString *)AppendToString:(NSString *)original andNewstring:(NSString 阅读全文
posted @ 2017-04-10 10:09 NextXavier 阅读(144) 评论(0) 推荐(0) 编辑
摘要: /** * NSString 转换 UTF8声明 */ + (NSString *)UtfToString:(NSString *)newstring; /** * NSString 转换 UTF8实现 */ +(NSString *)UtfToString:(NSString *)newstrin 阅读全文
posted @ 2017-04-10 10:04 NextXavier 阅读(147) 评论(0) 推荐(0) 编辑
摘要: /** * json转字符串声明 */ + (NSString *)jsonToString:(NSDictionary *)dic; /** * json转字符串实现 */ + (NSString *)jsonToString:(NSDictionary *)dic { if(!dic){ ret 阅读全文
posted @ 2017-04-10 10:02 NextXavier 阅读(190) 评论(0) 推荐(0) 编辑
摘要: //声明UILabel对象 @property (nonatomic,strong) UILabel *label; // 初始化 self.label = [[UILabel alloc] init]; self.label.backgroundColor = [UIColor clearColo 阅读全文
posted @ 2017-04-10 09:47 NextXavier 阅读(131) 评论(0) 推荐(0) 编辑
摘要: //声明对象@property (nonatomic,strong) UIPageControl *pagecontrol; //初始化 self.pagecontrol = [[UIPageControl alloc] init]; self.pagecontrol.backgroundColor 阅读全文
posted @ 2017-04-08 10:53 NextXavier 阅读(168) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2017-04-07 16:12 NextXavier 阅读(6) 评论(0) 推荐(0) 编辑
摘要: //声明 UIScrollView-》#27932A #952775 #602AAB @property (nonatomic,strong) UIScrollView *scrollview; //声明 UIImageView @property (nonatomic,strong) UIImag 阅读全文
posted @ 2017-04-07 14:13 NextXavier 阅读(423) 评论(0) 推荐(0) 编辑
摘要: // // ViewController.m // UIView // // Created by sougu on 2017/3/13. // Copyright © 2017年 NextXavier. All rights reserved. #import "ViewController.h" 阅读全文
posted @ 2017-03-13 15:48 NextXavier 阅读(197) 评论(0) 推荐(0) 编辑
摘要: // // main.c // Day01-01 // // Created by sougu on 2016/12/6. // Copyright © 2016年 sougu. All rights reserved. /* #include <stdio.h> #:是一个预处理指令,告诉编译器告 阅读全文
posted @ 2016-12-06 18:16 NextXavier 阅读(416) 评论(0) 推荐(0) 编辑