- 浏览: 340244 次
- 性别:
- 来自: 武汉
最新评论
-
leslie89757:
[img][img][img][img][img][img][ ...
CocoaPods 安装使用 -
hanmeizhi:
very useful to me. Thanks
Dismissing MPMoviePlayerViewController the right way -
luzj:
这个考虑不周全, 在iOS5的键盘高度就不是这个值了,这样写死 ...
UITextView: move view when keyboard appears -
xjg19870111:
不错。
objective-c NSString 常用操作 -
juedui0769:
现在已经不行了!
android源码下载
文章列表
UITextView: move view when keyboard appears
For showing the textview fields without being hidden by the keyboard, the standard way is to move up/down the view having text fields whenever the keyboard is shown.
The following simple steps is used to move up/down the UITextField in your iPhone.
Step ...
1. gcons
http://www.greepit.com/open-source-icons-gcons/
2. glyphish
http://glyphish.com/
3. iconsweets
http://www.iconsweets.com/
4. free vector icon
http://www.dezinerfolio.com/freebie/30-free-vector-icons
5. 资源网站
http://www.deviantart.com/
6. 查找图标
http://findicons.com/
7. 国外 PhotoShop 免费字体
h ...
1. 在uiviewcontroller声明nsstring property的方法:
NSString *groupName;
@property (nonatomic, assign) NSString *groupName;
2.Setting the back button title of a UINavigationItem
The following code will set the back button title of the current UINavigationItem:
UIBarButtonItem *backButton = [[UIBarButtonIte ...
开发者网站备忘
- 博客分类:
- iphone development
开发者网站
http://www.scoop.it/t/iphone-and-ipad-development 超强
http://cocoacontrols.com/posts 超强
http://cocoacontrols.com/posts?page=9
设计灵感
http://www.iospirations.com/
iphone字体
http://iosfonts.com/
http://adeem.me/blog/archivepage/
http://itracki.com/timeless/xcode-tutorial-add-splash-screen-app/
...
uitableview隐藏headerview 或者 uisearchbar
[self.tableView setContentOffset:CGPointMake(0,40)];
[self.tableView setContentOffset:CGPointMake(0,self.searchDisplayController.searchBar.frame.size.height)];
1、最重要的事情:
在每天早上(或者是前一天晚上),重点列出今天要做3件或者4件最重要的事情,先完成这些。即使你除开这些重要事项就没有完成其他的事,但还是度过了非常有成效的一天。
2、大家伙:
就是你一直都在做的大项目。每天或每周专门给他留出时间来做,一步步完成。
3、清空收件箱:
一收到邮件就决定如何处理。如果是需要你做一些动作的话,要么做,要么加入待办事项,要么删除,要么存档;如果只是供你参考的邮件,就把他存档吧。清空你的收件箱。
4、早起:
在别人支配你的时间之前,早起一个小时就等于是一天多了极富成效的一小时。
5、一进一出:
通过替代原则来避免混乱。每次买了新的东西,就 ...
[问题描述:]
编译无法上真机
错误提示
Couldn't register XXX(授权文件名称) with the bootstrap server. Error: unknown error code.
This generally means that another instance of this process was already running or is hung in the debugger.
[解决办法]
重启iphone
[导致问题的原因]
错误的插拔数据线,在debug联机状态,没有停止debug而直接拔掉数据线.
The iphone will dial a number using either of the formats listed below. But, it will do nothing if you are in the simulator
[[UIApplication sharedApplication]
openURL:[NSURL URLWithString:@"tel://15415551234"]];
[[UIApplication sharedApplication]
...
许多第三方的显示器不能使用字体平滑特性,这些显示器包括戴尔(DELL)、三星(SAMSUNG)、LG、惠普(HP)、艺卓(EIZO)、联想(lenovo)等显示器。
Mac OS X 实际上有 5 个字体平滑选项可供使用:
自动 – 在主屏上最佳
标准 – CRT显示器最佳
轻
中 – 液晶屏最佳
重
但是 Mac为了简化设置,在系统偏好设置中只提供了 2 个选项:自动和标准(CRT)。现在 CRT 屏幕已经很少使用了,大部分情况下用户其实只有一个选项可选:自动。然而问题是很多第三方显示器不能被 Mac OS X 正确的识别,被误判成了 CRT 显示器,于是字体平滑选项被错误的应用了。
解 ...
1.按照BOOTCAMP的向导,选择磁盘格式化并拷贝镜像文件到U盘
2.下载WINDOWS SUPPORT文件,这个文件下载了直接放在U盘的根目录里
3.重启进入WINDOWS安装界面
4.WINDOWS安装完毕后发现未安装任何驱动
5.进入U盘,windowssupport目录,点击SETUP,安装驱动即可
mac系统如何显示和隐藏文件
苹果Mac OS X操作系统下,隐藏文件是否显示有很多种设置方法,最简单的要算在Mac终端输入命令。显示/隐藏Mac隐藏文件命令如下(注意其中的空格并且区分大小写):
显示Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool true
隐藏Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool false
或者
显示Mac隐藏文件的命令:defaults write com.apple.finder Appl ...
详见链接 备忘
http://blog.csdn.net/wswqiang/article/details/6896120
开发者博客:
http://zaal.tumblr.com/
http://idevrecipes.com/
引用第三方库文件 duplicate symbol
When you link a static library that’s using ObjectiveC categories, you usually have instructions from the developers to add -ObjC and -all_load linker flags which solve linking problems and prevent crashes. Now, if you happen to have the same categories or other objc sy ...
//1、创建常量字符串。
NSString *astring = @"This is a String!";
//2、创建空字符串,给予赋值。
NSString *astring = [[NSString alloc] init];
astring = @"This is a String!";
NSLog(@"astring:%@",astring);
[astring release];
//3、在以上方法中,提升速度:initWithString方法
NSString ...
alertview = [[UIAlertView alloc]
initWithTitle:NSLocalizedString(@"请输入验证码", nil)
message:@"\n\n\n\n"
delegate:self
cancelButtonTitle:@"取消"
...