- 博客(6)
- 问答 (5)
- 收藏
- 关注
原创 使用GCD 信号量来实现iOS 同步网络请求
使用 dispatch_async 模仿网络请求,使用 for 循环来模拟网络请求后的数据处理情况dispatch_queue_t queue1 = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); //创建 dispatch_semaphore_t semaphore1 = dispat
2017-05-05 17:10:26 666
原创 iOS 集成一网通支付的坑
1.UIWebView 和 WKWebView必须都实现, 因为 SDK 中会在有 WKWebView 的时候自动调用 WKWebView 的方法, 如果不实现 WKWebView 会造成崩溃;2. UIWebView 发送请求 //1.设置请求路径 NSURL *URL=[NSURL URLWithString:@"一网通支付接口地址"]; //2.创建请
2017-04-25 10:34:00 976
原创 UIButton 设置 image 和 title 的布局问题
系统自带的 UIButton 是可以添加一个图片和一个标题的,并且位置是可以随意设置的。主要用到两个属性imageEdgeInsetstitleEdgeInsets1.如果图片的宽/高(@2x@3x做相应的处理)大于等于 button 的大小,imageView 的 frame 的 x/y 为0,width/height 为 button 的 width/heigh
2016-08-29 18:48:26 1756
原创 递归求数阶 return 的问题
递归求数阶 #include int add (int x);int main() { int number; printf("请输入需要求数阶的值:"); scanf("%d", &number); int all = add (number); int i; pr
2015-09-06 08:38:29 521
原创 学生成绩排名(C语言编写)
//学生成绩排名#include struct Birthday{ int year; int month; int day; };struct Student{ char name[30]; int age; structBirthday birthday; doubl
2015-09-05 20:12:46 17130
空空如也
iOS中 @synchronized(对象) 中"对象"是什么的问题
2015-11-08
storyboard中的view问题
2015-09-28
OC中KVO什么时候可以自动监视set方法改变的值的变化
2015-09-21
C语言中怎么用数组接收多个字符串
2015-09-08
C语言中指针和地址的问题
2015-09-06
TA创建的收藏夹 TA关注的收藏夹
TA关注的人