1.tableView 分割線左邊短15畫素問題
首先在viewDidLoad
方法加入以下程式碼:
if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {
[self.tableView setSeparatorInset:UIEdgeInsetsZero];
}
if ([self.tableView respondsToSelector:@selector(setLayoutMargins:)]) {
[self.tableView setLayoutMargins:UIEdgeInsetsZero];
}
複製程式碼
然後重寫willDisplayCell
方法
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell
forRowAtIndexPath:(NSIndexPath *)indexPath{
if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
[cell setSeparatorInset:UIEdgeInsetsZero];
}
if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
[cell setLayoutMargins:UIEdgeInsetsZero];
}
}
複製程式碼
2. 簡單的獲取當前時間
// CFAbsoluteTime其實就是double
CFAbsoluteTime time = CFAbsoluteTimeGetCurrent();
複製程式碼
3.程式直接退出
exit(0);
複製程式碼
4.讓一個檢視始終在最前面
view.layer.zPosition = 999;
複製程式碼
5.判斷一個view是不是指定view的子檢視
BOOL isChildView = [childView isDescendantOfView:parentView];
複製程式碼
6.UIViewController中的幾個重要方法
* alloc 建立物件,分配空間
* init (initWithNibName) 初始化物件,初始化資料
* loadView 從nib載入檢視 ,除非你沒有使用xib檔案建立檢視
* viewDidLoad 載入完成,可以進行自定義資料以及動態建立其他控制元件
* viewWillAppear檢視將出現在螢幕之前,馬上這個檢視就會被展現在螢幕上了
* viewDidAppear 檢視已在螢幕上渲染完成
* viewWillDisappear 檢視將被從螢幕上移除之前執行
* viewDidDisappear 檢視已經被從螢幕上移除,使用者看不到這個檢視了
* dealloc 檢視被銷燬,此處需要對你在init和viewDidLoad中建立的物件進行釋放.
* viewVillUnload- 當記憶體過低,即將釋放時呼叫;
* viewDidUnload-當記憶體過低,釋放一些不需要的檢視時呼叫。
複製程式碼
7.檢視中座標轉換
// 將畫素point由point所在檢視轉換到目標檢視view中,返回在目標檢視view中的畫素值
- (CGPoint)convertPoint:(CGPoint)point toView:(UIView *)view;
// 將畫素point從view中轉換到當前檢視中,返回在當前檢視中的畫素值
- (CGPoint)convertPoint:(CGPoint)point fromView:(UIView *)view;
// 將rect由rect所在檢視轉換到目標檢視view中,返回在目標檢視view中的rect
- (CGRect)convertRect:(CGRect)rect toView:(UIView *)view;
// 將rect從view中轉換到當前檢視中,返回在當前檢視中的rect
- (CGRect)convertRect:(CGRect)rect fromView:(UIView *)view;
*例把UITableViewCell中的subview(btn)的frame轉換到
controllerA中
// controllerA 中有一個UITableView, UITableView裡有多行UITableVieCell,cell上放有一個button
// 在controllerA中實現:
CGRect rc = [cell convertRect:cell.btn.frame toView:self.view];
或
CGRect rc = [self.view convertRect:cell.btn.frame fromView:cell];
// 此rc為btn在controllerA中的rect
或當已知btn時:
CGRect rc = [btn.superview convertRect:btn.frame toView:self.view];
或
CGRect rc = [self.view convertRect:btn.frame fromView:btn.superview];
複製程式碼
8. 利用巨集在擴充套件類新增屬性
#define ASSOCIATED(propertyName, setter, type, objc_AssociationPolicy)\
- (type)propertyName {\
return objc_getAssociatedObject(self, _cmd);\
}\
\
- (void)setter:(type)object\
{\
objc_setAssociatedObject(self, @selector(propertyName), object, objc_AssociationPolicy);\
}
複製程式碼
9.漢字轉拼音
- (NSString *)stringToPinyin
{
if ([self length] > 0) {
NSMutableString *ms = [[NSMutableString alloc] initWithString:self];
if (CFStringTransform((__bridge CFMutableStringRef)ms, 0, kCFStringTransformMandarinLatin, NO)) {
}
if (CFStringTransform((__bridge CFMutableStringRef)ms, 0, kCFStringTransformStripDiacritics, NO)) {
//NSLog(@"pinyin: %@", ms);
return ms;
}
}
return self;
}
複製程式碼
10.給空間指定位置新增圓角
- (void)viewAddBezierPathWithRoundedRect:(CGRect)rect byRoundingCorners:(UIRectCorner)corners cornerRadii:(CGSize)cornerRadii{
UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:rect byRoundingCorners:corners cornerRadii:cornerRadii];
CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
maskLayer.frame = self.bounds;
maskLayer.path = maskPath.CGPath;
self.layer.mask = maskLayer;
}
複製程式碼
11.已某個view截圖並生成Image
- (UIImage*)viewShot{
UIGraphicsBeginImageContext(self.bounds.size);
[self.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
複製程式碼
12.避免同時點選多個Button
第一種全域性方式:
在AppDelegate中新增 [[UIButton appearance] setExclusiveTouch:YES];
第二種指定方式:
button.exclusiveTouch = YES;
複製程式碼
13.Debug列印日誌
#pragma mark - 列印日誌
#ifdef DEBUG // 除錯狀態
//// 開啟LOG功能
#define NSLog(FORMAT, ...) fprintf(stdout,"[NSLOG] [類名:%s : 第%d行的NSLog] %s\n",[[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);
////NSLogger
//#define NSLog(...) LogMessageF( __FILE__,__LINE__,__FUNCTION__, NULL, 0, __VA_ARGS__);
#else // 釋出狀態
// 關閉LOG功能
#define NSLog(FORMAT, ...)
#endif
複製程式碼
14.適配iOS 11
if (@available(iOS 11.0, *)){
// [[UIScrollView appearance] setContentInsetAdjustmentBehavior:UIScrollViewContentInsetAdjustmentNever];
[UITableView appearance].estimatedRowHeight = 0;
[UITableView appearance].estimatedSectionHeaderHeight = 0;
[UITableView appearance].estimatedSectionFooterHeight = 0;
}
複製程式碼
15.設定tabbar
/**
* 更多TabBar自定義設定:比如:tabBarItem 的選中和不選中文字和背景圖片屬性、tabbar 背景圖片屬性等等
*/
- (void)customizeTabBarAppearance:(UITabBarController *)tabBarController {
// Customize UITabBar height
// 自定義 TabBar 高度
tabBarController.tabBarHeight = TG_TANGO_TABBAR_HEIGHT;
// set the text color for unselected state
// 普通狀態下的文字屬性
NSMutableDictionary *normalAttrs = [NSMutableDictionary dictionary];
normalAttrs[NSForegroundColorAttributeName] = [UIColor grayColor];
// set the text color for selected state
// 選中狀態下的文字屬性
NSMutableDictionary *selectedAttrs = [NSMutableDictionary dictionary];
selectedAttrs[NSForegroundColorAttributeName] = TangoGreen;
// set the text Attributes
// 設定文字屬性
UITabBarItem *tabBar = [UITabBarItem appearance];
[tabBar setTitleTextAttributes:normalAttrs forState:UIControlStateNormal];
[tabBar setTitleTextAttributes:selectedAttrs forState:UIControlStateSelected];
// Set the dark color to selected tab (the dimmed background)
// TabBarItem選中後的背景顏色
// [self customizeTabBarSelectionIndicatorImage];
// update TabBar when TabBarItem width did update
// If your app need support UIDeviceOrientationLandscapeLeft or UIDeviceOrientationLandscapeRight,
// remove the comment '//'
// 如果你的App需要支援橫豎屏,請使用該方法移除註釋 '//'
// [self updateTabBarCustomizationWhenTabBarItemWidthDidUpdate];
// set the bar shadow image
// This shadow image attribute is ignored if the tab bar does not also have a custom background image.So at least set somthing.
[[UITabBar appearance] setBackgroundImage:[[UIImage alloc] init]];
[[UITabBar appearance] setBackgroundColor:[UIColor whiteColor]];
[[UITabBar appearance] setShadowImage:[UIImage imageNamed:@"tapbar_top_line"]];
// set the bar background image
UITabBar *tabBarAppearance = [UITabBar appearance];
// 設定背景圖片
if (IS_IPHONE_X) {
//換個圖片
}else{
[tabBarAppearance setBackgroundImage:[UIImage imageNamed:@"tabbar_background"]];
}
// remove the bar system shadow image
// 去除 TabBar 自帶的頂部陰影
[[UITabBar appearance] setShadowImage:[[UIImage alloc] init]];
}
複製程式碼