분류 전체보기

    xcode로 안드로이드 개발?

    다음 사이트를 참고 했습니다.http://alex.tapmania.org/2010/09/android-ndk-and-xcode.htmlAndroid NDK and Xcodexcode: grab it hereAndroid SDK: grab them here 해당 사이트에 인스톨 메뉴얼을 따라 설치 하세요.자 이제 안드로이드 프로젝트와 NDK code가 좀 있다는 가정하에 진행을 해봅시다.Xcode 프로젝트 생성Xcode – File -> New ProjectExternal Build System 선택안드로이드 프로젝트의 PARENT(상위) 디렉토에가서 xcode 프로젝트를 같은 이름으로 만듭니다Replace 선택 - 걱정 마세요 코드를 망치진 않습니다프로젝트에 파일을 더합니다 Add -> Existing ..

    이클립스 어시스트 설정

    이클립스 어시스트 설정

    도저히 이클립스가 불편해서 안되겠다최대한 Xcode처럼 바꿔보자1.Ctrl+Space 를 누르면 되긴 하지만 좀더 xcode처럼 편하게 할수없을까 Preferences -> Java -> Editor -> Content Assist Auto activation triggers for Java.을 다음과 같이 설정 해준다ABCDEFGHIJKLMNOPQSTUVWXYZabcdefghijklmnopqrstuvwxyz. R은 R.id할때마다 다른거 떠서 뺌이제 타이핑을 시작하면 바로 어시스트가 뜬다 2. 이건 좀 비추......원래 탭의 기능이 겹치는 바람에 문제가 생김Xcode를 쓰다보면 탭에 자동으로 손이 가게 되있다. Preferences -> General -> KeysWord Completion 검색Bi..

    UI/UX

    40 무료 플랫 UI 키트 몇몇개는 이미 사이트가 닫아서 없어졌지만몇개는 아직 살아있습니다. 기본적인 컴포넌트들이 가져다 쓸만하게 만들어져있습니다. http://designbeep.com/2013/10/17/40-absolutely-best-free-flat-ui-kits/

    아이폰 가격에 대하여

    http://www.bluecloudsolutions.com/blog/cost-develop-app/대충 가격대가 얼마정도 하는지 알 수 있습니다물론 서비스의 복잡도에 따라 크게 달라질수도 있습니다조만간 번역 할 수 있도록......까먹지만 않으면..

    안드로이드 설치

    안드로이드 설치

    1. eclipse indigo를 받자http://www.eclipse.org/downloads/packages/release/indigo/sr22. android plugin을 받자메뉴에 Help -> Install New Software 에서 우측상단에 Add를 클릭하고https://dl-ssl.google.com/android/eclipse 를 추가한다뒤에 플러그인들을 체크해주고 설치하자 3. 설치가 다되고 이클립스를 다시시작하면 안드로이드 아이콘이 생긴다Android SDK Manager 아이콘을 클릭해서 없는 SDK 를 받는다혹시나 싶어서 2.2 이상은 그냥 쭉 다받았다 4.Android Virtual Device Manager을 눌러서 에뮬레이터를 새로 추가해준다 5. 되는지 확인한다cmd+n..

    Mavericks 업데이트 후 안드로이드 안될때

    Mavericks 업데이트 후 안드로이드 안될때

    Mavericks 업데이트 후 안드로이드 이클립스 메뉴상에 문제강ㅆ거나android studio가 안되면은 다음 두지 문제가 있을 수 있습니다. 하나는 보안 설정 문제설정 > 보안 및 개인 정보에 모든곳 App을 허용해주세요 두번째는 java 문제http://support.apple.com/kb/DL1572?viewlocale=en_US&locale=en_US다운로드 받으시면 됩니다개발자 화이팅

    macro 9/26

    Sub jaego() Dim i, j, k, l As Long Dim wsFrom1, wsFrom2, wsFrom3, wsFrom4, wsTo As Worksheet Dim row1, row2, row3, row4, row5, col1, col2 As Long Dim sum As Long 'Excel.ActiveWorkbook.RefreshAll Dim fPath, fName As String Dim wbFromFile As Workbook Dim wsToFile, wsFromFile As Worksheet Dim strName As String Set wsToFile = Excel.Worksheets(1) fPath = ThisWorkbook.Path fName = Dir(fPath & "\" & "*..

    macro

    Sub table99() Dim inputRow, outputRow As Integer Dim i, j As Integer Dim row1, row2, col1, col2 As Long Dim fPath, fName2, fName As String Dim wbFrom As Workbook Dim wsSetup, wsFrom, wsTo As Worksheet Dim sheetName As String sheetName = "SDP" If SheetExists(sheetName, ThisWorkbook.Name) Then 'turn off alert to user before auto deleting a sheet so the function is not interrupted ' Application.Dis..

    macro 9/24

    Sub table99() Dim inputRow, outputRow As Integer Dim fromSheet, toSheet As Worksheet Dim wsSetup As Worksheet Dim i, j As Integer Dim LR, NR As Long Dim col1, col2 As Long Dim fromCol, toCol As Long Dim strFind As String Set wsSetup = Excel.Worksheets("Setup") Set toSheet = Excel.Worksheets(wsSetup.Cells(6, 2).Value) strFind = wsSetup.Cells(14, 2).Value Set fromSheet = ThisWorkbook.Sheets(wsSetu..

    find view

    [(YourUIViewController *)[[self.superview viewWithTag:10] nextResponder] doSomething];[yourUIView.window.rootViewController doSomething]

    macro

    Sub table99() Dim x, y As Integer Dim i, j As Integer Dim fPath, fName2, fName As String Dim LR, NR As Long Dim wbGrab As Workbook Dim wsDest As Worksheet Dim sourceRange As Range Dim sheetName As String Dim myRange As Range Dim myCell As Range sheetName = "Summary" '파일 읽어드리기 Set wsDest = ThisWorkbook.Sheets(sheetName) NR = 1 fPath = "C:\Group\" fName = Dir(fPath & "38W.xls*") fName2 = Dir(fPath..

    엑셀 메크로

    Option Explicit Private Declare Function SetCurrentDirectoryA Lib _ "kernel32" (ByVal lpPathName As String) As Long Sub ChDirNet(szPath As String) SetCurrentDirectoryA szPath End Sub Sub MergeSpecificWorkbooks() Dim MyPath As String Dim SourceRcount As Long, FNum As Long Dim mybook As Workbook, BaseWks As Worksheet Dim sourceRange As Range, destrange As Range Dim rnum As Long, CalcMode As Long D..

    멀티 로칼 서버

    http://kuppalli.wordpress.com/2011/01/24/setup-multiple-sites-on-your-local-machine-using-xampp-or-apache-2/

    php 실시간 새로고침

    http://uk3.php.net/flush 참고 http://developer.yahoo.com/performance/rules.html 참고 ... ... 다음과같이 헤더바로 다음에 쓰는것을 권장한답니다 ob_end_clean(); for($i=1; $i

    블러와 그라디언트

    #import ... CAGradientLayer *l = [CAGradientLayer layer]; l.frame = view.bounds; l.colors = [NSArray arrayWithObjects:(id)[UIColor whiteColor].CGColor, (id)[UIColor clearColor].CGColor, nil]; l.startPoint = CGPointMake(0.5f, 0.0f); l.endPoint = CGPointMake(0.5f, 1.0f); v.layer.mask = l;#import @interface CAFilter : NSObject+ (id)filterWithName:(NSString*)str;@end CAFilter* filter = [CAFilter fil..

    presentviewcontroller ModalViewController on NavigationViewController error

    ios7 i got this error" Attemp to present on which is not on the window hierarchy" I can fix this problem by presentviewcontroller directly to UIApplication's rootViewController but this time it didn't appear whatever I did.I found out the problem was navigationbarhiddenwhen navigationbarhidden is set to truesomehow on ios7 presentviewcontroller (modalviewcontroller) doesn't seem to work

    Sublime Text2-move to end of line using ctrl+e:

    add this to key bindings { "keys": ["ctrl+e"], "command": "move_to", "args": {"to": "eol", "extend": false} }

    jsonkit

    xcode JSONKit