iPhone不能分类的
zani515
这个作者很懒,什么都没留下…
展开
-
iphone系统控件里显示中文标题设置
在项目的plist文件里有一个项Localization native development region,值改为China添加 localization 设为 chinese然后再添加 localized resource can be mixed 设为 YES原创 2011-08-31 21:34:19 · 125 阅读 · 0 评论 -
[转]iPhone 港版和美版,有锁版和无锁版的区别?
iPhone进入中国已经快两个年头了,从上市的那一天就注定会造就一批“爱疯”一族,!看来Apple的魅力还是那么光彩照人,招人喜欢!但在喜欢以前还是希望大家对iPhone要有一定的了解,同时还要对市场上目前各个”版本“有一个大致的了解!首先,大家要清楚iPhone的运作模式,苹果公司在iPhone上市时,就定下了捆绑运营商的方式来销售iPhone的,简单点讲就是如果要买iPhone就必须买一...原创 2011-11-08 22:02:39 · 1291 阅读 · 0 评论 -
xcode4.2出现ARC错误解决方法
1. 通过上面方法XCODE会自动转成ARC. 2. 完全禁用ARC原创 2011-11-10 17:09:02 · 108 阅读 · 0 评论 -
animateWithDuration block main thread
用+ (void)animateWithDuration:(NSTimeInterval)duration animations:(void (^)(void))animations completion:(void (^)(BOOL finished))completion 来控制动画,会阻塞主线程,可以使用带有options参数的动画函数,并将其设置成带有UIViewAnimationOp...原创 2012-07-02 15:32:27 · 196 阅读 · 0 评论 -
app running in background
app需满足下面条件才能在后台运行,否则最多只能在后台10~15分钟your app must be one of these types:Apps that play audible content to the user while in the background, such as a music player appApps that keep users infor...原创 2012-07-27 12:36:57 · 830 阅读 · 0 评论 -
@dynamic 和@synthesize区别,@encode
@dynamic 是相对于 @synthesize的,它们用样用于修饰 @property,用于生成对应的的getter和setter方法。但是@ dynamic表示这个成员变量的getter和setter方法并不是直接由编译器生成,而是手工生成或者运行时生成。示例如下:@implementation ClassName@synthesize aProperty, bProper...原创 2012-12-06 09:56:53 · 99 阅读 · 0 评论 -
IOS 如何获取当前设置的语言
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; NSArray *languages = [defaults objectForKey:@"AppleLanguages"]; NSString *currentLanguage = [languages objectAtIndex:0];取得设置好的语言。。日语是j...原创 2013-05-27 14:20:29 · 169 阅读 · 0 评论 -
统计代码函数
find . "(" -name "*.m" -or -name "*.c" -or -name "*.cc" -name "*.cpp" -or -name "*.mm" -or -name "*.h" -or -name "*.strings" ")" -print | xargs wc -l原创 2013-01-06 09:31:05 · 270 阅读 · 0 评论 -
xcode 的project.pbxproj 的合并问题
打开project.pbxproj 手工删除了里面>>>head,===,<<<branch-name原创 2013-11-19 17:10:32 · 151 阅读 · 0 评论 -
NSNumberFormatter使用方法
NSNumberFormatter* moneyFormatter = [[[NSNumberFormatter alloc] init] autorelease]; [moneyFormatter setNumberStyle: kCFNumberFormatterSpellOutStyle]; NSString* moneyString = [moneyFormat...原创 2012-10-09 17:24:00 · 82 阅读 · 0 评论 -
检测文件属性(图片,视频或文本)
NSString *file = @"http://192.168.119.222:8090/shzhserver/media/dcb289f1-d5d8-4fcd-a8eb-5ec10838d38f.mp4"; DLog(@"%@", [file pathExtension]); CFStringRef fileExtension = (CFStringRef) [...原创 2013-12-10 17:17:51 · 239 阅读 · 0 评论 -
Determine device (iPhone, iPod Touch) with iPhone SDK
- (NSString *) platformString{ NSString *platform = [self platform]; if ([platform isEqualToString:@"iPhone1,1"]) return @"iPhone 1G"; if ([platform isEqualToString:@"iPhone1,2"]...原创 2014-05-01 19:57:42 · 157 阅读 · 0 评论 -
[CALayer release]: message sent to deallocated instance iOS内存过度释放问题
http://www.cnblogs.com/cocoajin/p/3534771.html http://www.cnblogs.com/cocoajin/p/3534771.html原创 2014-06-24 16:30:34 · 176 阅读 · 0 评论 -
iOS7 Custom UITabBarController
http://blog.csdn.net/u014084081/article/details/21539087,iPhone不能分类的原创 2014-07-02 16:57:31 · 113 阅读 · 0 评论 -
在Xcode项目中导入自定义的字体-
1. 将你的font的ttf文件导入到项目里。2. 找到项目的info.plist文件。 如果你没有手动修改过上述的文件,它的默认名字应该是[项目名]-info.plist3. 在该plist里添加一个新的项:Fonts provided by application4. 在里面的Item项里添加你的font文件的名字 使用的方法如下: [theLabel setFont:[UIFo...原创 2014-03-14 21:33:24 · 288 阅读 · 0 评论 -
XCode工程内多Targets教程
原帖地址 http://www.cocoachina.com/bbs/read.php?tid-10972-fpage-0-toread--page-1.html 相信很多人都注意到XCode中, 有个Target的概念. 这在很多地方都有所体现, 比如打开一个工程后, 左侧的列表中有Targets一项, 而在工程界面的顶部菜单中, project里面也有多个涉及到Target的项目, ...原创 2014-08-11 09:20:52 · 118 阅读 · 0 评论 -
appstore 网址 相关
获取某个app的网址,格式:https://itunes.apple.com/app/id812668884 获取开发者的所有app:itms-apps://itunes.com/apps/developerName, 如果develperName有空格,e(e.g. Development Company, LLC),那格式:itms-apps://itunes.com/apps/D...原创 2014-04-06 15:57:49 · 273 阅读 · 0 评论 -
可以管理证书里的AppID的Chrome和Safari插件
https://github.com/simonwhitaker/app-id-sanity原创 2011-11-08 15:58:32 · 135 阅读 · 0 评论 -
iOS系统中各种设置项的URL链接
在代码中调用如下代码:NSURL*url=[NSURL URLWithString:@"prefs:root=WIFI"];[[UIApplication sharedApplication] openURL:url];即可跳转到设置页面的对应项。[font=]About — prefs:root=General&path=AboutAccessibility — prefs...原创 2012-01-16 13:09:33 · 777 阅读 · 1 评论 -
xcode4.2中为propery重写setter和getter方法会出现警告解决方法
xcode4.2中为propery重写setter和getter方法会出现警告:writable atomic property 'someProperty' cannot pair a synthesized setter/getter with a user defined setter/getter 解决方法之一:在声明propery(nonatomic, ...)中,加入non...原创 2012-01-07 21:24:36 · 150 阅读 · 0 评论 -
在4.xsdk中使用MFMessageComposeViewController等编译的程序在iphone3.x运行会崩溃的问题...
Don't import <MessageUI/MFMessageComposeViewController.h> or it will crash on launch in 3.x. Just import <MessageUI/MessageUI.h>Class messageClass = (NSClassFromString(@"MFMessageComp...原创 2011-09-01 09:02:51 · 115 阅读 · 0 评论 -
iphone4按home键退出程序方法
在pist文件中添加UIApplicationExitsOnSuspend,并将值勾选上.原创 2011-09-13 23:41:14 · 151 阅读 · 0 评论 -
iphone4 xxx@2.png图片作用和如何使用
The retinal display on the new iPhone 4 doubles the pixel resolution of the display. However when it comes to laying out the UI elements you can still think about a full screen display with dimensio...原创 2011-06-30 14:18:59 · 531 阅读 · 0 评论 -
iphone app拖进iTunes生成ipa包出现embedded.mobileprovision错误
http://blog.sina.com.cn/s/blog_6907b67f0100o2vw.html Info.plist file中 "Application Requires iPhone Environment".打钩原创 2011-06-30 15:00:27 · 755 阅读 · 0 评论 -
idp证书如何给另一台机子使用
1. 现在主机子上用Xcode->Windows->Organizer, 在DEVELOPMENT下点击Developer profile, 在其右边点击Expore Develper profile按钮, 再弹出的对话框中输入保存的文件名,密码. 2.将主机上导出的.develperprofile文件拷贝到另一台机子上, 在这台机子上也用Xcode->Windows-&...原创 2011-06-30 15:09:00 · 145 阅读 · 0 评论 -
各个模块之间快速切换会崩溃问题
有时,在各个模块之间快速切换会崩溃问题,这是尝试在dealloc中将delegate都设置为nil.原创 2011-07-07 16:13:38 · 125 阅读 · 0 评论 -
open other app from my app
1. 在需要被启动的app中的plist文件, 右击Information Property List, 选择Add Row 2. 选择"URL types"作为键值3. 展开的"Item1",为URL identifier提供一个值,这个值可以是任意的, 但是惯例是使用"反向域名(reverse domain name)"(例如:com.mycompany.myapp)....原创 2011-09-30 11:10:49 · 182 阅读 · 0 评论 -
自定义Xcode4.2 .h和.m之间切换的快捷键
将默认的Jump to Next Counterpart 自成自己想要的快捷键即可.原创 2011-07-14 14:47:27 · 518 阅读 · 0 评论 -
XCode 4 - build output directory
Xcode 4 places its build products and other intermediaries/temporary files/indexes in a derived data directory now instead of a "build" directory that is mixed in with your product files. It does th...原创 2011-07-14 17:22:52 · 108 阅读 · 0 评论 -
xcode4自定义主题和自定义快捷键
open terminal, and run mkdir -p ~/Library/Developer/Xcode/UserData/FontAndColorThemesand download theme file which has the extension .dvtcolortheme.Move those files to the above folder.Then ...原创 2011-07-17 23:19:02 · 112 阅读 · 0 评论 -
快速打印(NSLog)view的frame各个值的方法
NSLog(@”My view frame: %@”, NSStringFromCGRect(myView.frame));原创 2011-10-22 21:02:23 · 123 阅读 · 0 评论 -
iphone 代码中检测真机还是模拟器的宏
TARGET_IPHONE_SIMULATOR ==== TARGET_OS_IPHONE原创 2011-08-01 17:48:05 · 102 阅读 · 0 评论 -
What is the basic difference between NSTimer, NSTask, NSThread and NSRunloop?
http://stackoverflow.com/questions/1124207/what-is-the-basic-difference-between-nstimer-nstask-nsthread-and-nsrunloop原创 2011-12-13 10:19:56 · 179 阅读 · 0 评论 -
iPhone、iPad通用的应用程序图标设置
http://blog.csdn.net/diyagoanyhacker/article/details/6158118原创 2011-12-18 21:38:40 · 194 阅读 · 0 评论 -
xcode4.2编译支持IOS3.1.2系统设置
1.Change the Target's "Build Settings" ==> "Architecture" from "Standard (armv7)" to "other". Add armv6 and armv7 2.Open the projects *-Info.plist, remove the setting "Required device capabil...原创 2011-12-26 12:16:05 · 94 阅读 · 0 评论 -
使用animateWithDuration 导致exc_bad_access
这时看看系统设置中的other link flags是否有使用-weak_library /usr/lib/libSystem.B.dylib如果有使用-weak-lSystem来代替 这种错误出现在模拟器,真机上不会。The problem is simply a bug in the iOS Simulator. The codes works fine on the d...原创 2011-12-30 12:32:47 · 182 阅读 · 0 评论 -
NSAttributedString.h
*/UIKIT_EXTERN NSString *const NSFontAttributeName NS_AVAILABLE_IOS(6_0); // UIFont, default Helvetica(Neue) 12UIKIT_EXTERN NSString *const NSParagraphStyleAttributeName NS_AVAILA...原创 2013-10-30 14:25:40 · 119 阅读 · 0 评论