摘要: Guideline 1.4.1 - Safety - Physical injury Your application provides health or medical advice, calculations, references, health reports, or diagnostic 阅读全文
posted @ 2020-11-26 09:48 ❀__wagmeღ 阅读(1805) 评论(0) 推荐(0) 编辑
摘要: [!] Unable to add a source with url `http://repo.baichuan-ios.taobao.com/baichuanSDK/AliBCSpecs.git` named `taobao-baichuansdk-alibcspecs`. You can tr 阅读全文
posted @ 2020-07-18 17:08 ❀__wagmeღ 阅读(842) 评论(0) 推荐(0) 编辑
摘要: position:relative,相对布局 相对自己布局 left:50px,top:50px (自己居左居上各50px) position:absolute,绝对布局 找近的一个已定位的父级元素进行定位(父级元素也需要已经定位,使用position属性) left:50px,top:50px ( 阅读全文
posted @ 2018-10-08 14:56 ❀__wagmeღ 阅读(903) 评论(0) 推荐(0) 编辑
摘要: 自己记录一哈,省的每次都去百度了。。。 阅读全文
posted @ 2018-05-11 09:26 ❀__wagmeღ 阅读(350) 评论(0) 推荐(0) 编辑
摘要: 1. 控制台打印线程问题 Main Thread Checker: UI API called on a background thread: -[UIApplication statusBarOrientation] PID: 4940, TID: 93956, Thread name: (non 阅读全文
posted @ 2017-12-30 16:20 ❀__wagmeღ 阅读(522) 评论(0) 推荐(0) 编辑
摘要: 前几天项目里面新pod了一个网易的nimkit ,然后不知道为啥导致了一些以前pod的第三方文件报了很多...is missing from working copy的警告,可能是pod网易nimkit的时候操作不当导致的吧 百度搜了搜之后看到了一个解决办法,实测有效,就记录下来 警告例子: 解决办 阅读全文
posted @ 2017-09-19 10:29 ❀__wagmeღ 阅读(221) 评论(0) 推荐(0) 编辑
摘要: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport 点击桌面 阅读全文
posted @ 2017-03-29 11:13 ❀__wagmeღ 阅读(2684) 评论(0) 推荐(0) 编辑
摘要: iOS7之后系统提供了侧滑手势(interactivePopGestureRecognizer), 即从屏幕左侧边缘滑起会pop回导航控制器栈的上个viewController。 不过如果你自定义了UINavigationViewController或者自定义了返回按钮,系统自带的侧滑返回功能会失效 阅读全文
posted @ 2017-03-29 10:43 ❀__wagmeღ 阅读(3334) 评论(0) 推荐(0) 编辑
摘要: NSArray *newArray = [oldArray subarrayWithRange:NSMakeRange(0, 10)]; 阅读全文
posted @ 2017-03-08 15:17 ❀__wagmeღ 阅读(3031) 评论(0) 推荐(0) 编辑
摘要: //每三个数字加一个逗号 : 123,234,324 + (NSString *)countNumAndChangeformat:(NSString *)num { int count = 0; long long int a = num.longLongValue; while (a != 0) 阅读全文
posted @ 2017-03-07 10:31 ❀__wagmeღ 阅读(520) 评论(0) 推荐(0) 编辑