• 大小: 191KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-05
  • 语言: 其他
  • 标签: IOS  自定义  仪表盘  

资源简介

IOS 上实现的自定义仪表盘,像车速里程表,可以用来做流量监控之类的应用

资源截图

代码片段和文件信息

//
//  AppDelegate.m
//  GaugeDemo
//
//  Created by 海锋 周 on 12-3-27.
//  Copyright (c) 2012年 CJLU. All rights reserved.
//

#import “AppDelegate.h“

#import “ViewController.h“

@implementation AppDelegate

@synthesize window = _window;
@synthesize viewController = _viewController;

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithframe:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.
    self.viewController = [[ViewController alloc] initWithNibName:@“ViewController“ bundle:nil];
    self.window.rootViewController = self.viewController;
    [self.window makeKeyAndVisible];
    return YES;
}

- (void)applicationWillResignActive:(UIApplication *)application
{
    /*
     Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
     Use this method to pause ongoing tasks disable timers and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
     */
}

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    /*
     Use this method to release shared resources save user data invalidate timers and store enough application state information to restore your application to its current state in case it is terminated later. 
     If your application supports background execution this method is called instead of applicationWillTerminate: when the user quits.
     */
}

- (void)applicationWillEnterForeground:(UIApplication *)application
{
    /*
     Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
     */
}

- (void)applicationDidBecomeActive:(UIApplication *)application
{
    /*
     Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background optionally refresh the user interface.
     */
}

- (void)applicationWillTerminate:(UIApplication *)application
{
    /*
     Called when the application is about to terminate.
     Save data if appropriate.
     See also applicationDidEnterBackground:.
     */
}

@end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2012-03-27 23:38  GaugeDemo\
     目录           0  2012-03-28 02:02  GaugeDemo\GaugeDemo\
     文件         361  2012-03-29 16:15  GaugeDemo\GaugeDemo\AppDelegate.h
     目录           0  2012-03-29 16:21  __MACOSX\
     目录           0  2012-03-29 16:21  __MACOSX\GaugeDemo\
     目录           0  2012-03-29 16:21  __MACOSX\GaugeDemo\GaugeDemo\
     文件         171  2012-03-29 16:15  __MACOSX\GaugeDemo\GaugeDemo\._AppDelegate.h
     文件        9973  2012-03-29 16:15  GaugeDemo\GaugeDemo\Gauge.m
     文件         171  2012-03-29 16:15  __MACOSX\GaugeDemo\GaugeDemo\._Gauge.m
     文件        2448  2012-03-29 16:15  GaugeDemo\GaugeDemo\AppDelegate.m
     文件         171  2012-03-29 16:15  __MACOSX\GaugeDemo\GaugeDemo\._AppDelegate.m
     目录           0  2012-03-27 23:38  GaugeDemo\GaugeDemo\en.lproj\
     文件          45  2012-03-27 23:38  GaugeDemo\GaugeDemo\en.lproj\InfoPlist.strings
     目录           0  2012-03-29 16:21  __MACOSX\GaugeDemo\GaugeDemo\en.lproj\
     文件         171  2012-03-27 23:38  __MACOSX\GaugeDemo\GaugeDemo\en.lproj\._InfoPlist.strings
     文件       10729  2012-03-29 15:45  GaugeDemo\GaugeDemo\en.lproj\ViewController.xib
     文件      132699  2012-03-29 15:27  GaugeDemo\GaugeDemo\gaugeback.png
     文件      135830  2012-03-29 15:27  __MACOSX\GaugeDemo\GaugeDemo\._gaugeback.png
     文件         793  2012-03-29 14:06  GaugeDemo\GaugeDemo\Gauge.h
     文件         171  2012-03-29 14:06  __MACOSX\GaugeDemo\GaugeDemo\._Gauge.h
     文件        1209  2012-03-27 23:38  GaugeDemo\GaugeDemo\GaugeDemo-Info.plist
     文件         321  2012-03-27 23:38  GaugeDemo\GaugeDemo\GaugeDemo-Prefix.pch
     文件         171  2012-03-27 23:38  __MACOSX\GaugeDemo\GaugeDemo\._GaugeDemo-Prefix.pch
     文件         346  2012-03-27 23:38  GaugeDemo\GaugeDemo\main.m
     文件         171  2012-03-27 23:38  __MACOSX\GaugeDemo\GaugeDemo\._main.m
     文件         104  2012-03-27 20:42  GaugeDemo\GaugeDemo\pointer.png
     文件          82  2012-03-27 20:42  __MACOSX\GaugeDemo\GaugeDemo\._pointer.png
     文件         473  2012-03-29 16:15  GaugeDemo\GaugeDemo\ViewController.h
     文件         171  2012-03-29 16:15  __MACOSX\GaugeDemo\GaugeDemo\._ViewController.h
     文件        3097  2012-03-28 19:10  GaugeDemo\GaugeDemo\pointer1.png
     文件         177  2012-03-28 19:10  __MACOSX\GaugeDemo\GaugeDemo\._pointer1.png
............此处省略28个文件信息

评论

共有 条评论