自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(33)
  • 资源 (1)
  • 收藏
  • 关注

转载 Size, Stride, Alignment

swift 中struct 在内存中的对齐。

2022-08-21 23:54:24 179

原创 # GETTING STARTED WITH VR DEVELOPMENT Via Unity

# GETTING STARTED WITH VR DEVELOPMENT Via Unity-------------------[Tutorials Link](http://unity3d.com/learn/tutorials/topics/virtual-reality/getting-started-vr-development?playlist=22946)

2016-07-24 09:19:02 310

转载 欢迎使用CSDN-markdown编辑器

欢迎使用Markdown编辑器写博客本Markdown编辑器使用StackEdit修改而来,用它写博客,将会带来全新的体验哦:Markdown和扩展Markdown简洁的语法代码块高亮图片链接和图片上传LaTex数学公式UML序列图和流程图离线写博客导入导出Markdown文件丰富的快捷键快捷键加粗 Ctrl + B 斜体 Ctrl + I 引用 Ctrl

2016-07-12 13:43:26 392

原创 Rift Getting Started Guide

Rift Getting Started Guide入手Oculus后,不会使用的请参看用户指导手册 网址:https://product-guides.oculus.com/en-us/documentation/rift/latest/Getting Ready for RiftThe recommended Rift system specifications are:GPU (graphi

2016-07-11 15:49:23 788

原创 越狱手机真机调试失败:Please verify that your device's clock is properly set, and that your signing

Please verify that your device's clock is properly set, and that your signing certificate is not expired手机上装appsync 对应的版本

2014-12-23 09:31:54 17410

原创 【Unix】vi command summary

vi command summaryThe following tables contain all the basic vi commands.(下表包含了所有基本的vi命令)Starting vi(启动vi)CommandDescriptionvi filestart at line 1 of file          

2014-12-12 10:35:23 513

原创 【Topics】IPC: CPDistributedMessagingCenter (rocketbootstrap)

参考地址:http://www.iphonedevwiki.net/index.php/CPDistributedMessagingCenterhttp://www.iphonedevwiki.net/index.php/Updating_extensions_for_iOS_7越狱后,Tweak之间的进程间通信,可以用CPDistributedMessagingCente

2014-12-10 19:20:27 2251

原创 [Coding Tricks]测试输出代码:DLog代替NSLog

//#define DEBUG#ifdef DEBUG# define DLog(...) NSLog(__VA_ARGS__)#else# define DLog(...)#endif

2014-12-01 14:05:21 407

原创 iOS OS X Security & Graphics

ZJUT

2014-11-06 14:36:23 356

转载 Mac Terminal Reference: 40+ Useful OS X Terminal Commands

Here are a bunch of Mac terminal commands sorted into general categories. I have intentionally omitted long bash scripts and AppleScripts and focussed instead on small useful commands that can be plug

2014-10-20 17:09:19 524

原创 【Loading Image】Loading Image Resource

Loading Images in Objective-C NSString* imageName = [[NSBundle mainBundle] pathForResource:@"image1"ofType:@"png"];NSImage* imageObj = [[NSImage alloc] initWithContentsOfFile:imageName];

2014-09-23 17:07:21 625

原创 【Loading nib file】Loading a nib file

Loading a nib file from the current bundle - (BOOL)loadMyNibFile{ // The myNib file must be in the bundle that defines self's class. if (![NSBundle loadNibNamed:@"myNib" owner:self]) {

2014-09-23 15:40:27 404

原创 【Loading Resources】iOS Supports Device-Specific Resources

In iOS 4.0 and later, it is possible to mark individual resource files as usable only on a specific type of device.This capability simplifies the code you have to write for Universal applications. Rat

2014-09-23 09:16:20 316

原创 【Internationalization】strings files (to be continued...)

Text is a prominent part of most user interfaces but also a resource that is most affected by localization changes.Rather than hard-coding text into your code, iOS and OS X support the storage of user

2014-09-23 09:14:06 409

原创 【Sample Code】Custom Segue

In a delegate-based model, the view controller defines a protocol for its delegate to implement. The protocoldefines methods that are called by the view controller in response to specific actions, s

2014-09-22 22:29:34 436

原创 【Sample Code】Configuring the Destination Controller When a Segue is Triggered

iOS performs the following tasks when a segue is triggered:

2014-09-22 22:20:47 582

原创 【View Controller】Configuring the Initial View Controller at Launch

If you define a main storyboard in your project, iOS automatically does a lot of work for you to set up your app.When your app calls theUIApplicationMainfunction, iOS performs the following action

2014-09-22 22:18:34 483

原创 【View Controller】Presenting a view controller programmatically

- (void)add:(id)sender { // Create the root view controller for the navigation controller // The new view controller configures a Cancel and Done button for the // navigation bar. RecipeAd

2014-09-22 21:44:18 357

转载 【URL Schemes】The Complete Tutorial on iOS/iPhone Custom URL Schemes

地址:http://iosdevelopertips.com/cocoa/launching-your-own-application-via-a-custom-url-scheme.html

2014-09-22 16:10:39 402

原创 【Topics Power】Reduce Power Consumption

You can help improve batterylife by optimizing your use of the following features:The CPUWi-Fi, Bluetooth, and baseband (EDGE, 3G) radiosThe Core Location frameworkThe accelerometersThe disk

2014-09-22 14:21:56 499

原创 【Topics Generic】Launching in Landscape Mode

Launching in Landscape ModeApps that uses only landscape orientations for their interface must explicitly ask the system to launch the appin that orientation. Normally, apps launch in portrait mode

2014-09-22 10:45:30 456

原创 【Topics Generic】Supporting Multiple Versions of iOS

Any app that supports a range of iOS versions must use runtime checks to prevent the use of newer APIs onolder versions of iOS that do not support them. For example, if you build your app using new fe

2014-09-22 10:37:59 319

原创 【Topics Generic】App Launch (Default) Images

It is recommendedthat you use the following format for launch image filenames:

2014-09-22 10:10:29 346

原创 【Topic Generic】App Icons

CFBundleIconskey Info.plist

2014-09-22 09:10:29 345

原创 let your App runs in background mode

在AppName-info.plist文件中加入下面:Required background modes (Array)it

2014-09-22 08:53:26 380

原创 iOS 安全逆向等blog

http://blog.csdn.net/yiyaaixuexi 念茜的CSDNhttp://nianxi.net/ios/ios-security-overview/   念茜的

2014-09-22 08:48:22 526

原创 【Topic Generic】Hide App icon in iOS

在AppName-info.plist文件中 加入:SBA

2014-09-22 08:47:47 388

原创 【Animation】Animating Sample Code

Performing a simple block-based animation

2014-09-20 20:54:28 801

原创 【APNs】Scheduling the Delivery of Local Notifications

- (void)scheduleAlarmForDate:(NSDate*)theDate { UIApplication* app = [UIApplication sharedApplication]; NSArray* oldNotifications = [app scheduledLocalNotifications]; // Clear o

2014-09-19 13:29:23 438

原创 【Multitasking】Executing a Finite-Length Task in the Background

//Starting a background task at quit time- (void)applicationDidEnterBackground:(UIApplication *)application { bgTask = [application beginBackgroundTaskWithExpirationHandler:^{ // C

2014-09-19 11:50:54 492

转载 【Objective-C】集合类(NSArray, NSSet, NSOrderedSet 和 NSDictionary)

有空http://blog.sina.com.cn/s/blog_4ca9ceef0101islc.html

2014-09-18 17:11:36 386

原创 【NSString Encoding】Strings in iOS are Unicode based.

Strings in iOS are Unicode based.

2014-09-18 16:53:30 375

原创 【iOS Design Pattern】The most important design patterns you must know

Model-View-Controller—This design pattern governs the overall structure of your app.Delegation—This design pattern facilitates the transfer information and data from one object to another.Ta

2014-09-18 16:01:29 325

计算机图形学年鉴 by 童欣2019.pdf

计算机图形学年鉴 by 童欣2019.pdf

2021-10-30

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除