在delegate中修改 //修改整体的navigationBar的背景颜色 [[UINavigationBar appearance] setBarTintColor:[UIColor colorWithRed:46/255.0 green:186/255.0 blue:157/255...
分类:
移动开发 时间:
2014-12-15 18:38:34
阅读次数:
751
这几天,经常用到为某个视图设置背景图片,而API中UIView没有设置背景图片的方法,搜集归纳如下:第一种方法:利用的UIView的设置背景颜色方法,用图片做图案颜色,然后传给背景颜色。UIColor *bgColor = [UIColor colorWithPatternImage: [UIIma...
分类:
其他好文 时间:
2014-12-15 11:56:46
阅读次数:
221
- (instancetype)initContentView {
self = [super init];
if (self) {
[self setModalPresentationStyle:UIModalPresentationCustom];
self.view.backgroundColor = [UIColor clearColor];
self.contentContainerView = [[UIView alloc] ini...
分类:
其他好文 时间:
2014-12-12 10:11:51
阅读次数:
231
/** * 十六进制转换成UIColor * * @param stringToConvert 十六进制字符串 * * @return UIColor */+(UIColor *) hexStringToColor: (NSString *) stringToConvert{ NSStr...
分类:
移动开发 时间:
2014-12-09 19:15:08
阅读次数:
217
+ (UIImage *)createImageWithColor:(UIColor *)color
{
CGRect rect = CGRectMake(0.0f,
0.0f, 1.0f,
1.0f);
UIGraphicsBeginImageContext(rect.size);
CGContextRef context =
UIGraphics...
分类:
其他好文 时间:
2014-12-08 19:40:57
阅读次数:
152
可用类别写一个 方便使用
+ (UIColor *) colorWithHexString: (NSString *)color
{
NSString *cString = [[color
stringByTrimmingCharactersInSet:[NSCharacterSet
whitespaceAndNewlineCharacterSet]] uppercaseS...
分类:
移动开发 时间:
2014-12-08 19:40:34
阅读次数:
168
自定义样式 ????self.pullTableView.pullArrowImage?=?[UIImage?imageNamed:@"blackArrow"];
????self.pullTableView.pullBackgroundColor?=?[UIColor?yellowColor];
????self.pullTableView....
分类:
移动开发 时间:
2014-12-08 12:35:04
阅读次数:
211
- (UIImage *) createImageWithColor: (UIColor *) color{CGRect rect = CGRectMake(0.0f,0.0f,1.0f,1.0f); UIGraphicsBeginImageContext(rect.size); CGConte.....
分类:
移动开发 时间:
2014-12-08 12:03:50
阅读次数:
145
1.设置navigationbar背景颜色[[UINavigationBar appearance] setBarTintColor:[UIColor blackColor]];2.设置按钮颜色self.navigationController.navigationBar.tintColor = [...
分类:
其他好文 时间:
2014-12-06 00:03:51
阅读次数:
199
UIButton *leftBtn = [UIButton
buttonWithType:UIButtonTypeCustom];
[leftBtn setTitleColor:lightBlue
forState:UIControlStateNormal];
leftBtn.backgroundColor = [UIColor
clearColor];
l...
分类:
其他好文 时间:
2014-12-05 19:26:24
阅读次数:
131