• 大小: 74KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-05
  • 语言: 其他
  • 标签: 微信  待办  

资源简介

自己随便写的一个小demo,仿照前面那个自定义cell的delete按钮,又增加的一个待办按钮,和微信上有点相似,用户自己可以随便改动。写的不好,望请见谅。只供参考喔……

资源截图

代码片段和文件信息

//
//  AppDelegate.m
//  CustomCellDelete
//
//  Created by 顾常新 on 13-9-4.
//  Copyright (c) 2013年 love. All rights reserved.
//

#import “AppDelegate.h“

#import “ViewController.h“

@implementation AppDelegate

- (void)dealloc
{
    [_window release];
    [_viewController release];
    [super dealloc];
}

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[[UIWindow alloc] initWithframe:[[UIScreen mainScreen] bounds]] autorelease];
    // Override point for customization after application launch.
    self.viewController = [[[ViewController alloc] initWithNibName:@“ViewController“ bundle:nil] autorelease];
    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  2014-05-26 09:00  CustomCellDelete\
     文件        6148  2013-09-05 10:39  CustomCellDelete\.DS_Store
     目录           0  2014-05-26 14:35  __MACOSX\
     目录           0  2014-05-26 14:35  __MACOSX\CustomCellDelete\
     文件         177  2013-09-05 10:39  __MACOSX\CustomCellDelete\._.DS_Store
     目录           0  2014-05-26 14:07  CustomCellDelete\CustomCellDelete\
     文件        6148  2014-05-26 14:35  CustomCellDelete\CustomCellDelete\.DS_Store
     目录           0  2014-05-26 14:35  __MACOSX\CustomCellDelete\CustomCellDelete\
     文件         177  2014-05-26 14:35  __MACOSX\CustomCellDelete\CustomCellDelete\._.DS_Store
     文件         366  2014-05-26 11:26  CustomCellDelete\CustomCellDelete\AppDelegate.h
     文件         171  2014-05-26 11:26  __MACOSX\CustomCellDelete\CustomCellDelete\._AppDelegate.h
     文件        2429  2014-05-26 11:26  CustomCellDelete\CustomCellDelete\AppDelegate.m
     文件         171  2014-05-26 11:26  __MACOSX\CustomCellDelete\CustomCellDelete\._AppDelegate.m
     文件       10326  2014-05-26 09:10  CustomCellDelete\CustomCellDelete\backlog.png
     文件         177  2014-05-26 09:10  __MACOSX\CustomCellDelete\CustomCellDelete\._backlog.png
     文件         793  2014-05-26 11:26  CustomCellDelete\CustomCellDelete\CustomCell.h
     文件         171  2014-05-26 11:26  __MACOSX\CustomCellDelete\CustomCellDelete\._CustomCell.h
     文件        4980  2014-05-26 14:06  CustomCellDelete\CustomCellDelete\CustomCell.m
     文件         171  2014-05-26 14:06  __MACOSX\CustomCellDelete\CustomCellDelete\._CustomCell.m
     文件        1161  2013-09-04 21:46  CustomCellDelete\CustomCellDelete\CustomCellDelete-Info.plist
     文件         177  2013-09-04 21:46  __MACOSX\CustomCellDelete\CustomCellDelete\._CustomCellDelete-Info.plist
     文件         335  2013-09-04 21:46  CustomCellDelete\CustomCellDelete\CustomCellDelete-Prefix.pch
     文件         228  2013-09-04 21:46  __MACOSX\CustomCellDelete\CustomCellDelete\._CustomCellDelete-Prefix.pch
     文件       18594  2013-06-07 13:53  CustomCellDelete\CustomCellDelete\Default-568h@2x.png
     文件         177  2013-06-07 13:53  __MACOSX\CustomCellDelete\CustomCellDelete\._Default-568h@2x.png
     文件        6540  2013-06-07 13:53  CustomCellDelete\CustomCellDelete\Default.png
     文件         177  2013-06-07 13:53  __MACOSX\CustomCellDelete\CustomCellDelete\._Default.png
     文件       16107  2013-06-07 13:53  CustomCellDelete\CustomCellDelete\Default@2x.png
     文件         177  2013-06-07 13:53  __MACOSX\CustomCellDelete\CustomCellDelete\._Default@2x.png
     文件       10382  2013-09-04 22:00  CustomCellDelete\CustomCellDelete\delete.jpg
     文件         177  2013-09-04 22:00  __MACOSX\CustomCellDelete\CustomCellDelete\._delete.jpg
............此处省略49个文件信息

评论

共有 条评论