Android SDK 폴더의 platform-tools 폴더로 이동하여 아래 명령어를 실행한다

 

adb shell settings put global verifier_verify_adb_installs 0

 

[출처]

https://stackoverflow.com/questions/15014519/apk-installation-failed-install-failed-verification-failure

 

Posted by 모과이IT
,

http://osxdaily.com/2011/11/23/restart-mission-control-in-os-x-lion/

 

How to Restart Mission Control in Mac OS X

If you make any customizations to Mission Control, or if you encounter obvious problems with how Desktops and apps are handled and assigned, you can restart Mission Control without having to reboot…

osxdaily.com

The command line method is much faster if you’re comfortable with Terminal.app, launch Terminal from /Applications/Utilities/ and type the following command:

killall Dock

Posted by 모과이IT
,

https://m.blog.naver.com/PostView.nhn?blogId=kcskiller&logNo=220605108920&proxyReferer=https%3A%2F%2Fwww.google.com%2F

 

[iOS] Main.storyboard 에서 custom class

StoryBoard 에서 View 나 기타 등등 UI 를 그렸을 때, 기능을 적용시키기 위하여 Custom Class 를 ...

blog.naver.com

 

TestView.h

@interface TestView : UIView {

}

 

TestView.m

@implementation TestView

 

이런식으로 나와야 Custom Class 등록 가능. 

 

Posted by 모과이IT
,