上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 39 下一页

2018年5月26日

macOS NSButton(上-属性)(UIbutton用于iOS)大全,欢迎大家提建议持续完善

摘要: - (void)viewDidLoad { [super viewDidLoad]; NSLog(@"Hello world!"); // 设置按钮 [self setbutton]; } -(void)setbutton{ NSButton *button = [[NSButton alloc]i 阅读全文

posted @ 2018-05-26 16:25 高彰 阅读(1513) 评论(0) 推荐(0)

2018年5月11日

微信小程序分享

摘要: /** * 用户点击右上角分享(index.js) */ onShareAppMessage: function (ops) { if (ops.from === 'button') { // 来自页面内转发按钮 console.log(ops.target) } return { title: '轻生活科技蓝牙设备平台--... 阅读全文

posted @ 2018-05-11 11:46 高彰 阅读(190) 评论(0) 推荐(0)

2018年5月9日

iOS App Store 应用转移转让

摘要: 他山之石可以攻玉。 援引:http://www.ifeegoo.com/ios-app-store-app-transfer.html 阅读全文

posted @ 2018-05-09 09:40 高彰 阅读(269) 评论(0) 推荐(0)

2018年4月28日

iOS 审核注意事项以及获取设备信息资料

摘要: https://blog.csdn.net/Reborn_Tai/article/details/79245498 我不想重复造轮子 阅读全文

posted @ 2018-04-28 10:33 高彰 阅读(145) 评论(0) 推荐(0)

2018年4月27日

iOS 上架小问题Alpha通道

摘要: https://blog.csdn.net/qq_28142539/article/details/51127560 阅读全文

posted @ 2018-04-27 11:41 高彰 阅读(145) 评论(0) 推荐(0)

2018年4月19日

git的使用

摘要: git init //把这个目录变成Git可以管理的仓库 git add README.md //文件添加到仓库 git add . //不但可以跟单一文件,还可以跟通配符,更可以跟目录。一个点就把当前目录下所有未追踪的文件全部add了 git commit -m "first commit" //把文件提交到仓库 git remote add origin git@githu... 阅读全文

posted @ 2018-04-19 17:42 高彰 阅读(93) 评论(0) 推荐(0)

2018年4月17日

iOS导航栏左边按钮图像变形

摘要: UIView *iconBgView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 25, 25)]; UIButton * backbtn =[UIButton addBtnImage:@"backimg" AndFrame:CGRectMake( 阅读全文

posted @ 2018-04-17 15:50 高彰 阅读(798) 评论(0) 推荐(0)

2018年3月19日

tableview简单例子和简单遍历

摘要: Instruction_set_list.h #import <UIKit/UIKit.h> @interface Instruction_set_list : UIViewController @property (strong,nonatomic)UITableView *tableviewIn 阅读全文

posted @ 2018-03-19 09:46 高彰 阅读(500) 评论(0) 推荐(0)

2018年2月23日

字符串的方法集合

摘要: NSString *last1 = [str1 substringToIndex:str1.length-2];//截去字符串结尾 NSString *last2 = [str2 substringFormIndex:str2.length-2];//截取字符串结尾 阅读全文

posted @ 2018-02-23 17:29 高彰 阅读(190) 评论(0) 推荐(0)

2018年2月6日

iOS tableview下拉刷新

摘要: - (void)viewDidLoad { [super viewDidLoad]; // 创建tableview [self setTableView]; [self setupRefresh]; } // 下拉刷新 - (void)setupRefresh { NSLog(@"setupRefresh -- 下拉刷新"); ... 阅读全文

posted @ 2018-02-06 16:08 高彰 阅读(1689) 评论(0) 推荐(0)

上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 39 下一页

导航