夜间模式暗黑模式
字体
阴影
滤镜
圆角
主题色

标签:iOS

15 篇文章

iOS中的delegate.
iOS的delegate学习的过程中找了好多的资料说的都很模糊自己总结的:只有一点.就是callback. 在.h文件中写出: @protocol XxxDelegate @required -(void) methodName:(id *)methodValue; @end @interface Xxx :NSObject{ id<xxxD…
xcode 上传ipa到apple store
step 1. cmd + R 启动到手机 然后选择如下图 step 2. 点击Expert. step 3. 选中Save for iOS App Store Deployment点击next. step 4. 选择帐号.然后选择导出ipa 路径. step 5. 打开Application Loader.把刚才生成的ipa扔进去. step 6…
iOS Masonry learn issue.
```// // FranchiseeVIewController.m // NewBoBo // // Created by TestSmirk on 16/9/13. // Copyright © 2016年 bzby. All rights reserved. // #import "FranchiseeVIewController…
iOS要注意的
iOS取消选中颜色```Objective-C cell.selectionStyle = UITableViewCellSelectionStyleNone; 自定义Cell要注册 [_uitabView registerNib:[UINib nibWithNibName:@"BusinessViewCell" bundle:nil] forCe…
自定义UITableView不显示cell内容.
自定义Cell有两种方式:1. 带xib视图文件的: 要在tabview初始化的时候调用registerNib:forCellReuseIdentifier来注册xib. 2. 不带xib纯自定义Cell 要在初始化的时候调用registerClass:forCellReuseIdentifier来注册Class.
pod probrems
安装pod提示: ERROR: Error installing cocoapods: activesupport requires Ruby version >= 2.2.2 解决 [sudo] gem install activesupport -v 4.2.6 然后再sued install pod su.. from /Library…
iOS UIPangestureRecognizer
iOS 手指滑动的一些思路结果跑偏到动画上了. view 跟随手指移动的代码如下: 1. 生成 UIPangestureRecongnizer 然后 addTarget 或者直接在构造函数中加入target 第一个参数是self,第二个是selector方法. 2. 然后通过view 的addGestureRecognizer 把刚才生成的手势加入…
xcode在非Application路径安装插件
xcode因为硬盘的原因不能安装在系统Application里在其他路径安装插件提示Application里没有xcode提示: xcrun: error: active developer path ("/Volumes/Xcode/Xcode.app/Contents/Developer") does not exist, use `xcode…
kind of probrems
看书看到网络访问随便找了一个公共接口结果提示: Transport security has blocked a cleartext HTTP 连接中的第一个回答解决了我的问题. 听说iOS要IPV6,不可能要所有的APP都要改成ipv6吧?一些不方便的公司不是不能上架了.ipv6都没有走到大众的面前.Apple也真是够高瞻远瞩的.