關於 ios 轉屏的問題
之前做過 ipad 專案的開發,在專案使用到轉屏的情況很多,使用的主要方法如下:
- (void)viewdidload
- (void)willrotatetointe***ceorientation:(uiinte***ceorientation)tointe***ceorientation duration:(nstimeinterval)duration
當然, 你也可以使用通知
//旋轉螢幕通知
[[nsnotificationcenter defaultcenter] addobserver:self
selector:@selector(ondeviceorientationchange)
name:uideviceorientationdidchangenotification object:nil];
/** * 旋轉螢幕通知
*/- (void)ondeviceorientationchange
break;
case uiinte***ceorientationportrait:
break;
case uiinte***ceorientationlandscapeleft:
break;
case uiinte***ceorientationlandscaperight:
break;
default:
break;}}
不要忘記在專案中做配置如下
關於activity橫豎屏切換的問題
介面的橫豎屏切換 1 在androidmanifest.xml中對所需要進行橫豎屏切換的activity進行設定以下屬性 android screenorientation portrait 當前設定為只可以進行豎屏的顯示 android screenorientation landscape 當前...
關於HIBERNATE轉JPA的問題
公司目前因為hibernate和公司產品的許可不相容,要把hibernate做了,可以是我們系統光hbm就大幾百個,美國乙個架構師要換ibatis,但是代價實在是大,8個人做一年也估計搞不定,哎.我自己看了一下jpa openjpa 發現和hibernate太像了,打自己乙個自己做做看有多快了,寫了...
關於時間格式轉date的問題
因為專案後台傳回的字串為yyyy mm dd hh mm ss格式,在專案中需要轉換為自己需要的nsdate型別,所以使用方法 nsdate yc stringwithtimestring nsstring string withformat nsstring format 在此過程中遇到乙個問題 ...