1、首先我们创建一个Asp.Net MVC4 项目,项目模板选择 Internet application; 发现Global.asax 文件有所变化,较之以前的版本可谓清新养眼: public class MvcApplication : System.Web.HttpApplication { protected void Application_Start() { AreaRegistration.RegisterAllAreas(); WebApiConfig.Register(GlobalConfi... Read More
IOS 6.0 控制屏幕旋转:1、 window初始化时必需使用rootviewcontroller self.window.rootViewController = self.viewcontroller;而不是 [self.window addSubview:self.viewcontroller.view];2、在需要旋转的controller 中添加如下三个方法:///iOS6.0之前- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation { ... Read More