- 浏览: 257746 次
- 性别:
- 来自: 北京
最新评论
-
cccoooccooco:
测了下,效率很高啊。谢谢分享。
字符串替换算法【java】 -
zkai309:
你好,
我们是ios手游《富豪传奇》的开发商,你开发的糗事囧 ...
如何判断自己是否到了该辞职的时候 -
xyxdasnjss:
吃饱了就饿 写道以后会用到
设备判断 iphone3? iphone4? iphone5? -
吃饱了就饿:
以后会用到
设备判断 iphone3? iphone4? iphone5? -
xyxdasnjss:
zhihaoshi 写道ios 5.0 中用什么方法判断 iO ...
ios 判断设备的GPS功能是否开启
文章列表
xcode5 provisioning profile path: ~/Library/MobileDevice/Provisioning Profiles
http://shfzhzhr.iteye.com/blog/1808000
code中默认的UILabel是垂直居中对齐的,如果你的UILabel高度有多行,当内容少的时候,会自动垂直居中。
比较郁闷的是,UILabel并不提供设置其垂直对齐方式的选项。所以如果你想让你的文字顶部对齐,那么就需要自己想办法了。
stackoverflow.com 上提供了几种方法来达到顶部对齐的效果。
方法一:
在显示文字时,首先计算显示当前的文字需要多宽和多高,然后将对应的UILabel的大小改变成对应的宽度和高度。
该方法的代码如下:
...
★收费版APP三年总结(结帖)
- 博客分类:
- app
http://www.cocoachina.com/bbs/read.php?tid=213544
各位朋友好,apop感觉这里的朋友有许多是以广告收入为主,所以apop来分享另外一块(收费版APP)的个人三年来的总结分享,希望对各位有帮助。1.找到核心用户的需要,有明确的目标用户群(先在纸上构思找到痛处or特色再上Mac执行)没有抓到核心用户群,怎么做都事倍功半(比较难成功)2.图标吸引人(尽量做到同类最出众)截图很重要(尽量做到同类最出众,在截图上可用简短的一句话去点出应用的特色)
http://www.cocoachina.com/bbs/read.php?tid=213449&page=2
我当了十几年的员工,创了三四年的业。我加入过几家早期创业公司,其中有两家上市了。所以下面写的,全都是我的偏见,供你参考:1)我觉得首先看自己的心思,大公司也 ...
http://blog.csdn.net/wmqi10/article/details/16850479
iOS 7中在传统的左上角返回键之外,提供了右滑返回上一级界面的手势。支持此手势的是UINavigationController中新增的属性
interactivePopGestureRecognizer,即右滑返回只支持以UINavigationController为容器的ViewController间切换,要想在自定义容器中使用,需要一些额外的工作。
基本地,控制ViewController是否启用右滑返回,只需要这样:
1 self.navigationContro ...
#import <UIKit/UIKit.h>
@interface UIView (Additon)
/**
* Shortcut for frame.origin.x.
*
* Sets frame.origin.x = left
*/
@property (nonatomic) CGFloat left;
/**
* Shortcut for frame.origin.y
*
* Sets frame.origin.y = top
*/
@property (nonatomic) CGFloat top;
/**
...
#import <UIKit/UIKit.h>
@interface UIColor (XYCategory)
+ (UIColor *)colorWithHex:(long)hexColor;
+ (UIColor *)colorWithHex:(long)hexColor alpha:(float)opacity;
+ (UIColor *)colorWithHexString:(NSString *)hexColor;
+ (CGColorRef)getCGColorFromRed:(int)red Green:(int)green Blue:(int)bl ...
#import <Foundation/Foundation.h>
@interface MD5Util : NSObject
+ (NSString *)md5HexDigest:(NSString*)input;
@end
#import "MD5Util.h"
#import <CommonCrypto/CommonDigest.h>
@implementation MD5Util
+ (NSString *)md5HexDigest:(NSString*)input
{
co ...
git是分布式的代码管理工具,远程的代码管理是基于ssh的,所以要使用远程的git则需要ssh的配置。
github的ssh配置如下:
一 、
设置git的user name和email:
$ git config --global user.name "xuhaiyan"
$ git config --global user.email "haiyan.xu.vip@gmail.com"
二、生成SSH密钥过程:1.查看是否已经有了ssh密钥:cd ~/.ssh
@interface UIDevice (Helper)
- (BOOL)isJailbroken;
@end
@implementation UIDevice (Helper)
- (BOOL)isJailbroken {
BOOL jailbroken = NO;
NSString *cydiaPath = @"/Applications/Cydia.app";
NSString *aptPath = @"/private/var/lib/apt/";
if ([[NSFileManag ...
http://www.cocoachina.com/b/?p=219
NSClassFromString是一个很有用的东西,尤其在进行iPhone toolchain的开发上。
正常来说,
id myObj = [[NSClassFromString(@"MySpecialClass") alloc] init];
和
id myObj = [[MySpecialClass alloc] init];
是一样的。但是,如果你的程序中并不存在MySpecialClass这个类,下面的写法会出错,而上面的写法只是返回一个空对象而已。
因此,在某些情况下,可以 ...
1.UITableView reloadData 之后,显示的cell移动?有时还会消失?
因为使用了- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath 这个方法,去掉后 就好了。
2.iOS状态栏和导航栏不占位
//为了ios7 状态栏不透明
if ([self respondsToSelector:@selector(edgesForExtendedLayout)])
sel ...
隐私协议
轩辕互联(XuanYuan Inc,以下称"我们")隐私权保护声明保护用户个人隐私的承诺。
鉴于移动产品和网站的特性,我们将无可避免地与您产生直接或间接的互动关系,故特此说明我们对用户个人 ...
最近刚开始做iPad版应用,但发现横版的时候宽高是反的,很别扭,所以在网上找了一段代码,能够很好的输出宽高
#define SCREEN_WIDTH ((([UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationPortrait) || ([UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationPortraitUpsideDown)) ? [[UIScreen mainScreen ...
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
@interface UIPlaceHolderTextView : UITextView
@property (nonatomic, retain) NSString *placeholder;
@property (nonatomic, retain) UIColor *placeholderColor;
-(void)textChanged:(NSNotification*)notification;
@end
...