自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(24)
  • 收藏
  • 关注

转载 cocoaPods 使用

https://www.jianshu.com/p/f43b5964f582转载于:https://www.cnblogs.com/Jackie-subDai/p/9625998.html

2018-09-11 10:19:00 176

转载 iOS 获取本周,本月,本季,的起止日期

- (void)getQuarterBeginAndEndWith:(NSDate *)currentDate{ NSDate *nowDate = [NSDate date]; NSCalendar *calendar = [NSCalendar currentCalendar]; NSDateComponents *comp = [calendar ...

2018-08-29 10:02:00 688

转载 Git 创建分支,合并分支,等操作

https://www.jianshu.com/p/e6ff72056a11https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/001375840038939c291467cc7c747b1810aab2fb8863508000https://blog.youkuaiyun.com/l...

2018-07-31 17:18:00 243

转载 Masonry 设置宽高比例

/*/***SetstheNSLayoutConstraintmultiplierproperty*/-(MASConstraint*(^)(CGFloatmultiplier))multipliedBy;/***SetstheNSLayoutConstraintmultiplierto1.0/dividedBy*/...

2018-07-23 11:00:00 4417

转载 上传App Store 报错 ERROR ITMS-90087: "Unsupported Architectures 解决办法

https://www.jianshu.com/p/e003f22ab11a转载于:https://www.cnblogs.com/Jackie-subDai/p/9343882.html

2018-07-20 22:19:00 356

转载 iOS配置证书:Provisioning profile "xx_Distribution" doesn't include signing certificate "iPhone Developer...

证书出问题了。iOS配置证书:Provisioning profile "xx_Distribution" doesn't include signing certificate "iPhone Developer: "经过一番搜索,找到了一个解决办法:Build SettingsCode Signing Identity,分别改为iOS Developer/i...

2018-07-20 21:55:00 758

转载 UISwitch 当滑动时候不触发 事件 是因为 触发事件的 controlEvents [self.jkswitch addTarget:self action:@selector(openA...

[self.jkswitch addTarget:self action:@selector(openAction:) forControlEvents:(UIControlEventValueChanged)];转载于:https://www.cnblogs.com/Jackie-subDai/p/9343017.html

2018-07-20 18:16:00 393

转载 iOS 10 设置TableViewCell侧滑时,当Cell上有按钮的点击事件,当Cell进入编辑状态的时候取消按钮的点击事件...

//定义编辑样式- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath { JKDZMTGoodBaseCell * cell = (JKDZMTGoodBaseCell *)[tableV...

2018-07-20 15:26:00 262

转载 view沿着某一点旋转

#import "JKZhuanPanTopBtnsView.h"CGFloat const topBtnsHeight = 400.0f;@interface JKZhuanPanTopBtnsView ()/**<#condition#>*/@property (nonatomic,strong)UIView * tempView;...

2018-07-19 15:30:00 519

转载 修改Xcode新建类的注释模板(作者,公司名等)

https://blog.youkuaiyun.com/u011363981/article/details/50620039转载于:https://www.cnblogs.com/Jackie-subDai/p/9299104.html

2018-07-12 13:48:00 194

转载 yecao100链接

https://www.yecao100.net/cart.php?gid=8转载于:https://www.cnblogs.com/Jackie-subDai/p/9295466.html

2018-07-11 16:54:00 3438

转载 Failed to connect to GitHub to update the CocoaPods/Specs specs repo 问题

参考链接:https://www.jianshu.com/p/a502eb72b689墙外链接:https://stackoverflow.com/questions/38993527/cocoapods-failed-to-connect-to-github-to-update-the-cocoapods-specs-specs-repo/48962041#48962041To sol...

2018-07-11 15:17:00 1985

转载 Mac-相关操作命令行

命令行方式:显示隐藏文件:defaults write com.apple.Finder AppleShowAllFiles YES;KillAll Finder不显示隐藏文件:defaults write com.apple.Finder AppleShowAllFiles NO;KillAll Finder转载于:https://www.cnblogs.com/J...

2018-07-11 10:04:00 122

转载 FMDB 基本使用

// 0.拼接数据库存放的沙盒路径 NSString *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES).lastObject; NSString *sqlFilePath = [path stringByAppendi...

2018-07-10 17:12:00 208

转载 优秀网站汇总

iOS-最全的App上架教程http://www.cocoachina.com/appstore/20160708/16990.html[译]百里挑一:21个优质Swift开源Apphttp://www.cocoachina.com/ios/20161108/17998.html39个优秀的Swift UI开源库 star平均数2527...

2018-07-10 17:09:00 206

转载 九宫格代码

CGFloat margin = 10.0f; CGFloat appViewWidth = (375 - 4 * margin)/3; CGFloat appViewHeight = (375 - 4 * margin)/3; //2. 完成布局设计 //三列 int totalloc = 3;...

2018-07-10 17:07:00 314

转载 数组相关

移除指定范围的数组NSMutableArray * array = [NSMutableArray new]; for (int i = 0; i < 15; i++) { [array addObject:@(i)]; } NSLog(@"%@",array); NSRange rang...

2018-07-10 17:06:00 93

转载 动画设置模式大全

http://www.cocoachina.com/special/appdesign/转载于:https://www.cnblogs.com/Jackie-subDai/p/9290118.html

2018-07-10 17:03:00 230

转载 tableView 自动滚动到底部

- (void)addData:(id)object{ NSInteger count = self.dataArray.count; _index ++; NSString * str = [NSString stringWithFormat:@"当前第%zd行",_index]; [self...

2018-07-10 17:02:00 848

转载 项目中跳转到QQ 里面的时候打开对应的 聊天记录

NSString *qqNumber = @"343933286";NSString *openQQUrl = [NSString stringWithFormat:@"mqq://im/chat?chat_type=wpa&uin=%@&version=1&src_type=web",qqNumber];NSURL *url = [NS...

2018-07-10 16:59:00 547

转载 iOS开发-在GitHub上新建项目流程

转载: https://www.jianshu.com/p/6cfde199c9fc侵立删转载于:https://www.cnblogs.com/Jackie-subDai/p/9106264.html

2018-05-29 17:35:00 160

转载 PCH文件设置

参考:https://blog.youkuaiyun.com/li15809284891/article/details/53149806侵立删转载于:https://www.cnblogs.com/Jackie-subDai/p/9105124.html

2018-05-29 15:04:00 227

转载 iPhone 启动图尺寸

启动图:1125 * 24361242*2208750*1334640*960649*1136转载于:https://www.cnblogs.com/Jackie-subDai/p/9104810.html

2018-05-29 14:17:00 183

转载 RAC中最核心的类RACSiganl.h部分翻译

@interface RACSignal<__covariant ValueType> : RACStream/// Creates a new signal. This is the preferred way to create a new signal operation or behavior.//创建一个新的信号.这是创建新的信号操作或行为的首选方法...

2018-05-04 10:53:00 285

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除