[IOS] image size

개발/iOS 2010. 11. 28. 01:23
tabbar image size 
- document 30 x 30 
- best size 48 x 32

icon.png 57 x 57

'개발 > iOS' 카테고리의 다른 글

[iOS] UITableView Cell 변경 animation  (0) 2011.04.29
[IOS] KEYBOARD 화면 이동  (0) 2010.12.13
[XCODE] Breakpoint가 안먹을 때  (0) 2010.11.28
[XCODE] 메모리 관리 규칙  (0) 2010.11.16
[XCODE] Redefine NSLog  (0) 2010.11.16
Posted by 나랑살자
,
Pereferences - Debugging 탭에서 'Load symbols lazily' 옵션을 꺼주면 된다.

'개발 > iOS' 카테고리의 다른 글

[IOS] KEYBOARD 화면 이동  (0) 2010.12.13
[IOS] image size  (0) 2010.11.28
[XCODE] 메모리 관리 규칙  (0) 2010.11.16
[XCODE] Redefine NSLog  (0) 2010.11.16
[XCODE] DEBUGING 팁  (0) 2010.11.16
Posted by 나랑살자
,

[JAVA] DWR

개발/java 2010. 11. 23. 23:18
<!-- DWR Setting -->
<servlet>
   <servlet-name>dwr</servlet-name>
   <!-- display-name>DWR Servlet</display-name -->
   <!-- description>Direct Web Remoter Servlet</description -->
   <servlet-class>org.directwebremoting.servlet.DwrServlet</servlet-class>
   <!-- This should NEVER be present in live -->
   <init-param>
     <param-name>debug</param-name>
     <param-value>true</param-value>
   </init-param>
   <!-- By default DWR creates application scope objects when they are first
   used. This creates them when the app-server is started -->
   <init-param>
     <param-name>initApplicationScopeCreatorsAtStartup</param-name>
     <param-value>true</param-value>
   </init-param>
   <!-- WARNING: allowing JSON-RPC connections bypasses much of the security
   protection that DWR gives you. Take this out if security is important -->
   <init-param>
     <param-name>jsonRpcEnabled</param-name>
     <param-value>true</param-value>
   </init-param>
   <!-- WARNING: allowing JSONP connections bypasses much of the security
   protection that DWR gives you. Take this out if security is important -->
   <init-param>
     <param-name>jsonpEnabled</param-name>
     <param-value>true</param-value>
   </init-param>
   <!-- data: URLs are good for small images, but are slower, and could OOM for
   larger images. Leave this out (or keep 'false') for anything but small images -->
   <init-param>
     <param-name>preferDataUrlSchema</param-name>
     <param-value>false</param-value>
   </init-param>
   <!-- This enables full streaming mode. It's probably better to leave this
   out if you are running across the Internet -->
   <init-param>
     <param-name>maxWaitAfterWrite</param-name>
     <param-value>-1</param-value>
   </init-param>
   <!--
   For more information on these parameters, see:
   - http://getahead.org/dwr/server/servlet
   - http://getahead.org/dwr/reverse-ajax/configuration
   -->
   <load-on-startup>1</load-on-startup>
  </servlet>
 
<servlet-mapping>
<servlet-name>dwr</servlet-name>
<url-pattern>/dwr/*</url-pattern>
</servlet-mapping>
Posted by 나랑살자
,