Skip to content

Chris' Laboratory

chrislee.kr – Personal blog as bookshelves

Menu
  • Home
  • Github
  • Contact Me
Menu

Category: iPhone

Using KML file for iOS Simulator

Posted on 23/06/201311/09/2016 by Chris Lee

(Before beginning, there may be other ways to use KML. I am just beginner in iOS programming and this is how I work around.) XCode allows to simulate the locations using GPX file type. One of location tracker, Google Latitude, allows to download recorded locations to KML file type. To use KML file for iOS…

Continue reading

XCode crash every second time.

Posted on 11/06/2013 by Chris Lee

I have XCode 4.6.2 (4H1003) and MBP retina. When I run my project in simulator, it crashes every second running without any error message in debug console. return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); The error is “Thread 1: signal SIGABRT“. Annoyingly, XCode does not give any error. According to the this guy, it is because of…

Continue reading

To use ‘messageComposeViewController’

Posted on 09/06/201311/09/2016 by Chris Lee

To use ‘messageComposeViewController’ Add “MessageUI.framework” Library And should define on “AppDelegate.m” #import <MessageUI/MessageUI.h>    

Continue reading

Where is “UIViewController subclass”?

Posted on 30/05/201330/05/2013 by Chris Lee

In latest XCode (v4.6.2), I couldn’t find “UIViewController”, which tutorial book wants me to choose. According to this article, choose “Object-C Class” instead of.

Continue reading

deprecated! ‘UILineBreakModeCharacterWrap’ & ‘UITextAlignmentCenter’

Posted on 29/04/201310/09/2016 by Chris Lee

When I use UILineBreakModeCharacterWrap, I get this message ‘UILineBreakModeCharacterWrap’ is deprecated use NSLineBreakByCharWrapping instead of it. //[label setLineBreakMode:UILineBreakModeCharacterWrap]; [label setLineBreakMode:NSLineBreakByCharWrapping]; If I use UITextAlignmentCenter, then I get ‘UITextAlignmentCenter’ is deprecated: first deprecated in iOS 6.0 use NSTextAlignmentCenter instead of: //[textLabel setTextAlignment:UITextAlignmentCenter]; [textLabel setTextAlignment:NSTextAlignmentCenter];

Continue reading

MainWindow.xib absence in Xcode 4.2 beta 4 with iOS 5 SDK

Posted on 24/07/201111/09/2016 by Chris Lee

“FYI, I am very newbie in iPhone development.” I had upgraded Xcode to 4.2 beta 4 and realised that there is no more templates for iOS 4. Obviously, it did not include iOS 4 SDK because it said “with iOS 5 SDK”, duh! I could not go back to Xcode beta 3 since I upgraded…

Continue reading

legacy cell layout warning??

Posted on 28/12/201009/04/2011 by Chris Lee

legacy cell layout  warning?? http://stackoverflow.com/questions/3297270/problem-in-table-view WARNING: Using legacy cell layout due to delegate implementation of tableView:accessoryTypeForRowWithIndexPath: in <DisclosureButtonController: 0x5f3b0b0>.  Please remove your implementation of this method and set the cell properties accessoryType and/or editingAccessoryType to move to the new cell layout behavior.  This method will no longer be called in a future release. ANSWER: The…

Continue reading

In Xcode, Add > New File > Cocoa Touch Classes > UITableViewCell ???

Posted on 27/12/201009/04/2011 by Chris Lee

In Xcode, Add > New File > Cocoa Touch Classes > UITableViewCell ??? The book said, select Add> New File > Cocoa Touch Classes > UITableViewCell in Xcode and you cannot find it? The book is based on old version of XCode. You can find Add > New File > Cocoa Touch Classes > Objective-C…

Continue reading

UITableViewCell setText deprecated

Posted on 26/12/201009/04/2011 by Chris Lee

UITableViewCell setText deprecated UITableViewCell *cell = … … cell.text = … to cell.textLabel.text = @”test”;

Continue reading

Inserting iPhone Tab Bar Icons Using XCode

Posted on 03/01/201009/04/2011 by Chris Lee

Firstly you will need to add the icons to your project. Right click the resources folder under the main project icons and select Add > Existing Files… (This is article from http://www.glyfx.com/guide_iphone.html) In Xcode find the folder labeled “NIB Files” and expand it to see it’s contents. Double click on the .xib file that contains the…

Continue reading

Designing for the iPhone 3G: Tips and Tools

Posted on 11/10/200909/04/2011 by Chris Lee

아이폰 어플 개발시 UI Design 준비 과정 및 참고 프로그램을 알려준 글 주소: http://designingwebinterfaces.com/iphone-3g-design-tips iPhone Stencil Kit를 구입하고 싶지만, 역시 시간이 부족하여 나중에 주문하기로 하고 skip.

Continue reading

12 SQLite Resources for iPhone Developers

Posted on 26/03/200916/08/2016 by Chris Lee

SQLite is a public domaindatabase library that offers file and memory based relational databasefunctionality from a single C library. The iPhone / iPod Touch has theSQLite library included and ready to roll and Apple expects the SQLitelibrary to form the backbone of most applications’ data storagerequirements. We’ve collected together some of the best SQLite related…

Continue reading

iPhone SQLite Database Basics

Posted on 26/03/200916/08/2016 by Chris Lee

iPhone SQLite Database Basics 원본 출처 : http://wiht.link/sqlite_resources 번역자 : DELPAI(delpai at gmail.com) 번역날짜 : 2009년 3월 27일 번역자 이야기 : 너무 급하게 하는 바람에 오역이 있을 수도 있습니다. 오역이 있더라도 참고사항으로만 봐주시기 바랍니다. :) 고칠 부분이 있으면 댓글 남겨주세요. iPhone SDK에 NDA가 추가됨을 기뻐하며, iPhone에서 SQLite를 이용하는 설명서를 작성하기로 마음을 먹었습니다. 이 설명서는 SQLite…

Continue reading

Categories

  • Databases (11)
    • MongoDB (4)
    • MS-SQL (1)
    • MySQL (6)
  • E-Commerce (8)
    • Magento (8)
  • Finance (2)
  • Frameworks (84)
    • Adobe Flex (1)
    • Angular (ngx) (3)
    • Codeigniter (6)
    • CSS (5)
    • Django (2)
    • Javascript (13)
    • Node.js (6)
    • PHP (17)
    • React Native (4)
    • React.js (1)
    • Sencha Touch (4)
    • Terraform (1)
    • Vue.js (1)
    • WordPress (4)
    • Yii2 (3)
  • General Documents (15)
  • Marketing (3)
  • Mobile Development (33)
    • Android (20)
    • iPhone (13)
  • Platforms (21)
    • Arduino (2)
    • Docker (5)
    • Google App Engine (5)
    • Raspberry Pi (5)
    • Samsung Smart TV (4)
  • Security (17)
  • Server (31)
    • Linux (13)
  • Tools (14)
    • SVN (7)
  • Uncategorized (2)

Search

Recent Posts

  • Bootstrapping Kubernetes cluster with kubeadm
  • Taint all resources in the one module
  • Alpine – Plugin caching_sha2_password could not be loaded
  • npm link with peerDependencies
  • How to setup Gitlab runner with KVM enabled

Recent Comments

  • Obayed on Binance Auto Trading Bot – Buy low/Sell high with stop loss limit/Trade multiple coins
  • Ari on How to install memcache.so/memcached.so for MAMP Pro (Mac)
  • Mida ali on Binance Auto Trading Bot – Buy low/Sell high with stop loss limit/Trade multiple coins
  • Chris Lee on How to install memcache.so/memcached.so for MAMP Pro (Mac)
  • Chris Lee on Setting Up A VPN Server On OSX 10.6

Tags

1 ajax amazon android android-addpart browser chrislee-kr codeigniter codeigniter-tcpdf com-apple-net-racoon CSS CSS history hack delpaigmail-com entity-addpart-double exception-printing-is-disabled-by-default-for-security-reasons ext-plugins-listpagingplugin ext-plugins-listpagingplugin-example f iphone javascript jquery-defaultchecked jquery-samsung-smart-tv listpagingplugin mac magento-exception-printing-is-disabled-by-default-for-security-reasons magento-sample-data-exception-printing-is-disabled-by-default-for-security-reasons nu-vot null-core-errors-confignotfound-config-mk9engine-ini php samsung-smart-tv-jquery samsung-smart-tv-sdk-ajax samsung-smart-tv-sdk-jquery samsung-tv-sdk samsung-tv-sdk-jquery samsung tv sencha-smart-tv sencha-touch-list-paging smart-tv-jquery sqlite subversion svn tcedook tcpdf-codeigniter uilinebreakmodecharacterwrap-is-deprecated unknown-column-link-area

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
© 2023 Chris' Laboratory | Powered by Minimalist Blog WordPress Theme
 

Loading Comments...