摘要:#import "HMViewController.h" #import "AFNetworking.h" @interface HMViewController () <UINavigationControllerDelegate, UIImagePickerControllerDelegate,
阅读全文
摘要:今天给大家介绍的是一些日常随笔,就没有具体分类,内容主要有以下几点:json数据解析,PCH文件配置,获取一个view在主窗口的位置,视频播放,及远程推送的步骤json数据解析PCH文件配置获取一个view在主窗口的位置//rect代表showView在主窗口上的位置 CGRect r...
阅读全文
摘要:第一种:利用系统自带的tabbarItem加一个自定义按钮:#import "SZMTabBarController.h"#import "SZMTabBar.h"#import "SZMHomeViewCtrl.h"#import "SZMNavigationController.h"#impor...
阅读全文
摘要:简单的动画#import "SZMLuckyController.h"@interface SZMLuckyController ()@property (weak, nonatomic) IBOutlet UIImageView *luckyLight;@end@implementation SZ...
阅读全文
摘要:在开发过程中,设置日期是必不可少的://获取用户选择的时间 NSDate *date = self.dataPicker.date; //把NSdat转换成一个字符串 NSDateFormatter *formatter = [[NSDateFormatter alloc]init...
阅读全文
摘要:@property (weak, nonatomic) IBOutlet UISegmentedControl *Sgment;@end@implementation ArenaViewController- (void)viewDidLoad { [super viewDidLoad]; ...
阅读全文
摘要://设置图片框为圆角 ImgView.layer.cornerRadius = 7; ImgView.layer.masksToBounds = YES;//设置图片框为圆角 ImgView.layer.cornerRadius = 7; ImgView.layer.masksToBounds = ...
阅读全文
摘要:#import "CZNews.h"#import //**************一定要引入这个头文件*************@implementation CZNews+(instancetype)CZNewsWithDict:(NSDictionary *)dict{ CZNews *...
阅读全文
摘要:- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return _array.count;}- (UITableViewCell *)tableView:(UIT...
阅读全文