
ios
绚丽星空
爱学习更爱玩
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
简单音乐播放器
效果图目录结构代码//// ViewController.m// 播放音乐//// Created by xubh on 2017/3/24.// Copyright © 2017年 xubh. All rights reserved.//#import "ViewController.h"#import <AVFoundation/AVFoundation.h>@interf原创 2017-03-28 13:57:27 · 384 阅读 · 0 评论 -
UIButton在代码中使用及点击事件
UIButton在代码中使用及点击事件主要代码- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib.// 创建button// 注:设置类型只能在初始化的时候 UIButton *but原创 2017-03-28 17:03:00 · 16583 阅读 · 0 评论 -
UIIMageView实现帧动画
使用UIIMageView实现帧动画首先找两张人物动作图片拖到assets里面去。main.storyboard里新建两个按钮,一个UIImageview(并使用连线方式关联)使用NSMutableArray存储UIImage使用UIImageview加载NSMutableArray数组配置UIImageview的动画时长启动动画效果如下代码如下- (IBAction)startAni原创 2017-03-24 11:19:20 · 570 阅读 · 0 评论