摘要:实现效果如下:功能说明:程序运行,图片自动循环播放,采用定时器实现;当用户用手势触摸滑动时,定时器的自动播放取消,停止触摸时,自动无限播放;代码如下 :采用封装视图,外部进行调用即可:1.//// PSScrollVIew.h// ScrollView实现自动循环滚动广告//// Created b...
阅读全文
摘要:利用国庆假期,复习了一下之前学的知识,发现之前的知识自己都忘的差不多了,赶紧的抓紧时间好好的练习练习,为下个月找工作做好准备啊......#import "ViewController.h"@interface ViewController ()@property (weak, nonatomic)...
阅读全文
摘要:下面是使用AFNetWorking框架,在新浪微博发一条微博和请求豆瓣服务器的电影数据为例,简要说明利用AFNetWorking框架实现网络请求 :1.导入AFNetWorking框架;2.在ViewController.m文件进行网络请求;//POST方式- (void)POST{ AFHTTP...
阅读全文
摘要:1.创建类继承UIImage;2.创建绘制虚线的方法实现:+ (id)imageWithSize:(CGSize)size borderColor:(UIColor *)color borderWidth:(CGFloat)borderWidth{ //开启图片上下文 UIGraphicsBegin...
阅读全文
摘要:实现的效果图如下 :实现代码如下:#import "ViewController.h"//将旋转角度转换为弧度制#define angleToRadion(angle) ((angle) / 180.0 * M_PI)//秒针每秒钟转过的角度#define perSecondAngle 6//分针每...
阅读全文
摘要:实现的效果如下所示: 代码如下: ViewController.h #import <UIKit/UIKit.h>@interface ViewController : UIViewController@property (weak, nonatomic) IBOutlet UIPickerView
阅读全文