本月博客排行
-
第1名
Xeden -
第2名
fantaxy025025 -
第3名
bosschen - paulwong
- johnsmith9th
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - gengyun12
- wy_19921005
- vipbooks
- e_e
- benladeng5225
- wallimn
- ranbuijj
- javashop
- jickcai
- fantaxy025025
- zw7534313
- qepwqnp
- robotmen
- 解宜然
- ssydxa219
- sam123456gz
- zysnba
- sichunli_030
- tanling8334
- arpenker
- gaojingsong
- xpenxpen
- kaizi1992
- wiseboyloves
- jh108020
- xyuma
- ganxueyun
- wangchen.ily
- xiangjie88
- Jameslyy
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- nychen2000
- zxq_2017
- lzyfn123
- wjianwei666
- forestqqqq
- ajinn
- siemens800
- hanbaohong
- 狂盗一枝梅
- java-007
- zhanjia
- 喧嚣求静
- Xeden
最新文章列表
想学习java,如果学不会java怎么办?
想学习java,如果学不会java怎么办?
要想了解更多学习资料,欢迎加入Java学习交流群 487425429,在里面随时有老师来解答您的疑惑,您可以来看看的!很多时候一个行业好,是各个方面所造成的,就包括学习,也是造成行业好的原因之一,因为只有学习才能革新,只有革新技术才能更加成熟,从而再次推动行业的前进,行业随之而来也会更好,行业一旦好,岗位就急剧空缺,人才不够那么企业只能通过高工资来吸引人才 ...
判断背景图片为暗色还是亮色,来修改主题文字颜色
- (void)colorAction:(id)sender{
bgimageV.image = nil;
UIColor *color = nil;
int colorNum = arc4random()%2;
if (colorNum == 0)
color = [UIColor blackColor];
el ...
ios的线程和同步异步操作
http://www.cnblogs.com/kenshincui/p/3983982.html
ios的线程和同步异步操作
ios的线程和同步异步操作
ios的多线程,同步异步操作,都是我们日常的开发中经常会遇到的问题,本文把常见的ios线程,同步异步的操作进行了整理。
代码下载:
我博客中大部分示例代码都上传到了github,地址是:https://github.co ...
Objective-C学习——中文URL编码和解码
发现NSString类中有内置的方法可以实现。他们分别是:
- (NSString *)stringByAddingPercentEscapesUsingEncoding:(NSStringEncoding)encoding- (NSString *)stringByReplacingPercentEscapesUsingEncoding:(NSStringEncoding)enco ...
给UIImageView添加点击事件
给UIImageView添加点击事件
//单手单击
UIImageView *imageview1 = [[UIImageView alloc] initWithFrame:CGRectMake(125, 50, 229, 229)];
[imageview1 setImage:[UIImage imageWithContentsO ...
iOS 判断iphone ipad 系统版本
//iOS 判断iphone ipad 系统版本
#define ScreenWidth ([[UIScreen mainScreen] bounds].size.width)
#define ScreenHeight ([[UIScreen mainScreen] bounds].size.height)
#define iOS8 ([[[UIDevice currentDevi ...
设置导航栏状态栏透明
导航栏透明
// 导航栏透明
UINavigationBar *navigationBar = self.navigationController.navigationBar;
[navigationBar setBackgroundImage:[UIImage imageNamed:@"bg_transparent"]
f ...
Message Dispatch
The receiving object (i.e., receiver) of a message determines at runtime which of its instance methods to invoke.
The Objective-C syntax for sending a message to (i.e., invoking a method on) an o ...
Counting on your fingers—integral numbers
An integer is a whole number that can be negative or positive.The values 27,-5,and 0 are all valid integer values,but 0.82 isn't because it contains a decimal point.
By default,variables of type ...
Creating and destroying objects
In Objective-C it takes two steps to create an object;in order,you must. Allocate memory to store the new object.. Initialize the newly allocated memory to appropriate values.An object isn't fully func ...
iOS appDelegate 生命周期
◆- (void)applicationWillResignActive:(UIApplication *)application
说明:当应用程序将要入非活动状态执行,在此期间,应用程序不接收消息或事件,比如来电话了
◆- (void)applicationDidBecomeActive:(UIApplication *)application
说明:当应用程序入活动状态执行,这个刚 ...
给自定义类加类方法
在Objective-C中,你可以向类或对象发送消息来完成某件事。如果你想要你的自定义类能够回应某消息,就需要首先编写一个类方法。
类方法以+号开头。例如:
+(void)writeDescriptionToLogWithThisDate:(NSDate *)date;
类的实现中这么写:
+(void)writeDescriptionToLogWithThisDate:(NS ...
Undefined symbols for architecture armv7
原文:http://stackoverflow.com/questions/6429494/undefined-symbols-for-architecture-armv7
The common causes for "Undefined symbols for architecture armv7" are:
You import a header and do not l ...
Euclid ListView滑动和点击进去其他页面特效
Euclid ListView滑动和点击进去其他页面特效,通过SwingLeftInAnimationAdapter 实现每一个item点击和滑动进入详细页面的动画效果,提供getViewAnimator()方法。
运行效果:
效果很不错吧,废话不多说了,直接给你们源码:http://www.itlanbao.com/code/20150918/10000/100 ...
项目中遇到的IOS 9.x兼容性问题总结
对于ios还是有很多陌生,以致项目上了一版本之后才发现,版本适配问题的严重性,总结下这段时间遇到的两个问题。
一:HTMLPrase解析乱码的问题
使用HTMLPrase主要用于解决解析后台懒得解析的html标签,之前一直使用的很顺畅,今天发现9.x系统竟然出现了乱码。最终查到是HTMLPrase出了问题,而且8.x正常显示。可想而之,肯定是编码除了问题。以下是解决方案:
-(id)initWit ...
UINavigationItem UINavigationBar 关系分析
1.关系分析
2.关系综述
3.概念点
4.疑问
1.关系分析
UIBarItem-> UIBarButtonItem -> UINavigationItem
1.1 UIBarItem:
UIBarItem类是一个可以放置在Bar之上的所有小控件类的抽象类。继承了该基类所有子类在外观上类似于一个Button,它们都有一个标题,图片,动作以及目标,这点可以从其子类的 ...
iPhone App开发培训
课程大纲:
第一部分
1 创建你的第一个iPhone应用
安装Xcode
安装iPhone SDK
熟悉新工具
每个Flashlight都需要一个部件表
组装
在Mac上运行一下
2 方括号的力量
Objective-C:iPhone应用开发
方括号的领地
对象的要素
类
管理内存
属性和点
类方法
初始化对象
解除地址分配
循环:更好还是更坏
异常处理代码
使用选择器
出示你的id
3 Cocoa ...
最近博客热门TAG
Android(32037) Mobile(4157) iOS(3163) Apple(2605) Qt(1757) Nokia(1660) WAP(1650) Windows Mobile(1313) Objective-C(1245) 三星(1121) Symbian(1089) HTC(837) Windows Phone(696) OPhone(587) WinCE(547) BREW(502) Cocoa(437) 黑莓(427) BlackBerry(423) Palm(418)