- 博客(16)
- 资源 (1)
- 收藏
- 关注
原创 iOS后台播放网络音乐
第一步: 第二步:in the didFinishLaunchingWithOptions. UIDevice *thisDevice = [UIDevicecurrentDevice]; if([thisDevicerespondsToSelector:@selector(isMultitaskingSupported)
2015-07-30 22:09:09 516
原创 位运算-互换2个整数值
int a=10;int b=11;1:int temp=a;a=b;b=temp;2:a=b-a;b=b-a;a=b+a;3;a=a^b;b=a^b;a=a^b;
2014-01-22 17:58:30 511
原创 位运算-按位与,按位或,按位异或
位运算 :拿到整数的二进制位,对每一位进行运算 按位与 & 9&5 = 1 ; 9的二禁止是: 1001 5的二进制是: 0101 计算出来的值是: 0001 0001相对应的是 :1 只有相对应俩个二进位均为1时,结果位才为1,否则为0 : 1 0 =
2014-01-22 15:30:01 728
原创 第一个C程序-编译、链接、运行
1,编写代码2,编译:把C语言代码翻译成0和1编译指令 : cc -c 文件名.c编译成功,会生成一个.o 目标文件3,连接:其实就是把我们的.o目标文件跟系统自带的函数库合并在一起,生成一个可执行文件 (a.out)连接器连接指令 : cc 文件名.o4,运行运行指令 :指定到文件名.outmac终端指令:pwd 得到当前
2014-01-13 12:02:02 829
原创 UITableView 异步加载图片,cell自适应高度!项目常用。
UITableView 在ios里面算是很常用的的ui控件!用来显示列表数据,当显示固定消息体的时候挺方便的!一旦遇到消息内容不一致,然后每行的高度都不一样的时候,就需要我们自己来手动控制每行的高度啦!先看看 UITableViewDelegate UITableViewDelegate 几个常用的方法!// UITableView 构造CELL- (UI
2013-12-30 18:24:12 3215
原创 IOS UILabel 增加点击事件。
UITapGestureRecognizer *tapRecognizerWeibo=[[UITapGestureRecognizer alloc] initWithTarget:selfaction:@selector(doIt:)]; youLabel.userInteractionEnabled=YES; [youLabel addGestureRecognizer:ta
2013-11-28 10:39:06 9172
原创 ios 修改欢迎界面图片
iphone5之后 屏幕放大到了4寸我们需要在项目里面添加 Default-568h@2x.png 这样一个图片格式为 640*1136只有添加这样一张图片,手机才认为支持4寸! Default.png 320x480 Default@2x.png 640x960 Default-568h.png 320*568
2013-11-22 17:35:27 765
原创 Xcode5 icon去掉高光!
在配置文件里面加上这2个属性Icon already includes gloss effects 为YES!
2013-11-22 16:11:10 1359
原创 iphone程序设置icon图标
iPhone and iPodApplication Icon for iPhone (retina display)Icon@2x.png114 x 114Application Icon icon for iPhoneIcon.png57 x 57Settings/Spotlight icon for iPhone
2013-11-22 15:51:49 802
原创 判断是否第一次运行APP,以便是否进入APP介绍界面。
didFinishLaunchingWithOptions 添加以下代码,if (![[NSUserDefaults standardUserDefaults] boolForKey:@"everLaunched"]) {[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"everLaunched"];
2013-09-16 23:34:34 1039
原创 自定义UINavigationController背景-按钮-标题。5.0前后兼容
5.0之后,直接能设置导航栏的背景图片。UINavigationController *navigation=[[UINavigationController alloc] initWithRootViewController:youViewController];[navigation.navigationBar setBackgroundImage:[UIImage image
2013-09-10 21:24:45 519
原创 UINavigationController 界面跳转
先初始化UINavigationControllerself.iNav = [[UINavigationController alloc]initWithRootViewController:youUIViewController];把根视图设置为导航控制器。window.rootViewController = self.iNav;添加一个界面。You
2013-09-10 08:05:11 1403
原创 俩个UIViewController之间跳转过度动画 左右推出
youOther=[[OtherViewControlleralloc] init];CATransition *myTransition=[CATransitionanimation];//创建CATransitionmyTransition.duration=0.3;//持续时长0.3秒myTransition.timingFunction=UIViewAn
2013-09-10 07:37:34 1861
原创 iOS学习笔记(二)---------创建项目
前面写到连接真机做测试,现在真机连接上后,开始做创建项目吧。按照需求填写项目信息。创建完后的默认项目文件列表。快捷键 command+N 创建文件填写父类, 继承 UIViewController类 。 下面的with xib for user interface 记得勾选上。 创建完后,现在
2013-08-28 17:11:23 516
转载 iOS学习笔记(一)---------iOS真机调试
1、登录:首先登录https://developer.apple.com/ios/manage/overview/index.action登录后会进入如下界面: 图一2、制作证书,提前准备好证书,也可以用时制作。1)Finder->应用->钥匙串访问图二这将会打开如下图所示的页面,按照图示内容进行填写:
2013-08-28 16:52:47 518
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人