uitextfield 计算输入的字符个数(包含中英文数字特殊符号)
+ (int)convertToInt:(NSString*)strtemp
{
int strLength = 0;
char *p = (char *)[strtemp cStringUsingEncoding:NSUnicodeStringEncoding];
int length = [str...
分类:
其他好文 时间:
2015-03-11 17:24:07
阅读次数:
100
使用unity编写代码的大多数使用的都是c#,c#中可以使用特定的语句来对代码的执行效率进行检测。
检测代码如下:
using UnityEngine;
using System.Collections;
public class Test: MonoBehaviour
{
UISprite hh;
UILabel w;
void Start()...
分类:
编程语言 时间:
2015-03-10 15:34:11
阅读次数:
759
图片浏览器小案例简介接下来使用UIImageView、UILabel、UIButton实现一个综合小案例功能分析点击箭头切换序号、图片、描述如果是首张图片,左边箭头不能点击如果是尾张图片,右边箭头不能点击步骤分析搭建UI界面监听按钮点击切换序号、图片、描述掌握更换UIImageView的图片了解UI...
分类:
其他好文 时间:
2015-03-10 13:45:24
阅读次数:
116
UITextView上如何加上类似于UITextField的placeholder呢,其实在UITextView上加上一个UILabel或者UITextView,如果用UILable的话,会出现一个问题就是当placeholder的文字过长导致换行的时候就会出现问题,而用UITextView则可以有...
分类:
其他好文 时间:
2015-03-10 13:27:28
阅读次数:
124
1、添加文件GoYearMonthDayPickerView.h .m .xib、NSDate+Helper.h .m、iCarousel.h .m2、在Lable上显示日期UILabel *ageLabel = [[UILabel alloc]initWithFrame:CGRectMake(12...
分类:
其他好文 时间:
2015-03-09 15:37:44
阅读次数:
116
NSAttributedString1.使用这个类,必须先导入CoreText框架。2.给UILabel设置attributedText了会导致给UILabel中text,font,textColor,shadowColor,shadowOffset,textAlignment,lineBreakM...
分类:
其他好文 时间:
2015-03-08 22:46:35
阅读次数:
248
UITextField、UITextView、UILabel、UIButton、UISlider、UIStepper、UIImageView、UISwitch、UISegmentedControl、UIToolBar
分类:
其他好文 时间:
2015-03-07 13:40:40
阅读次数:
309
使用UIImageView、UILabel、UIButton实现一个综合小案例功能分析(1)点击箭头切换序号、图片、描述(2)如果是首张图片,左边箭头不能点击(3)如果是尾张图片,右边箭头不能点击步骤分析(1)搭建UI界面(2)监听按钮点击切换序号、图片、描述1. 界面分析1> 需要读取或修改的属性...
分类:
移动开发 时间:
2015-03-06 22:02:35
阅读次数:
1538
iOS常见控件的创建方法import UIKitclassViewController: UIViewController { var myLabel: UILabel = UILabel() var myView: UIView = UIView() var myButton: UIBut...
分类:
编程语言 时间:
2015-03-06 19:04:07
阅读次数:
174
一、问题当有时不浮动的父元素装载着浮动的子元素时,这个时候父元素的高度不会跟着的子元素的内容高度而自适应高度变大。比如截图的第一行图,上面一条黑色的粗线,就是父div的边框(为了看效果,我设置了父div的border:5px。左右两边是各浮动一个div)。于是乎,我想解决这个父元素高度不会跟随着子元...
分类:
其他好文 时间:
2015-03-06 14:13:45
阅读次数:
158