关键字 边框颜色 的文章


由   YIem   撰写于    浏览:2918  评论:0
关于在iOS开发过程中如何给控件(UIButon UIlabel UIView UIimageView)添加圆角/切圆 -以及添加边框和边框颜色传送门

由   YIem   撰写于    浏览:3713  评论:0
// 加边框 self.buttonsoundImage.layer.borderWidth = 1; // 边框颜色 self.buttonsoundImage.layer.borderColor = [UIColor whiteColor].CGColor;

由   YIem   撰写于    浏览:3640  评论:0
iOS-UI-UITabBarControllerDelegate-标签视图控制器@interface AppDelegate ()<UITabBarControllerDelegate> @end@implementation AppDelegate(void)dealloc{[_window release]; [super dea[...]

由   YIem   撰写于    浏览:3219  评论:0
/****** UISwith 开关******/ // frame只有坐标生效, 大小无效由系统默认指定 UISwitch *swt = [[UISwitch alloc] initWithFrame:CGRectMake(100, 200, 0, 0)]; // 注意触发方式 [swt addTarget:self action:@sele[...]

由   YIem   撰写于    浏览:6034  评论:0
//// RootViewController.m// UI5_UIControl//// Created by YIem on 15/12/11.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import "RootViewController.h"//[...]