NSMutableAttributedString *attrString =
[[NSMutableAttributedString alloc] initWithString:title]; NSRange range =
NSMakeRange(0, [attrString length...
分类:
其他好文 时间:
2014-05-19 11:20:27
阅读次数:
236
//取出想要变得字符串在大字符串的什么地方 NSRange changeRange =
[chapterStr rangeOfString:totalImg]; //字显示不同的颜色 NSMutableAttributedString
*attributedStr = [[NSMu...
分类:
其他好文 时间:
2014-05-16 07:00:18
阅读次数:
197
1.结构体1>.NSRange(location, length);
从location这个位置开始计数长度为lengthNSRange的创建方式:NSRange r1 = {location, length}; // es:
NSRange r1 = {2, 4}; 一般不这样写NSRange r...
分类:
其他好文 时间:
2014-05-15 09:50:55
阅读次数:
246
-(BOOL)textField:(UITextField*)textFieldshouldChangeCharactersInRange:(NSRange)rangereplacementString:(NSString*)string{
//Checkfornon-numericcharact....
分类:
其他好文 时间:
2014-05-10 20:21:36
阅读次数:
225
- (void)removeObject:(id)anObject inRange:(NSRange)aRange...
分类:
移动开发 时间:
2014-05-10 03:28:29
阅读次数:
451
#import int main(){/* 1.NSRange/CGRange
2.NSPoint/CGPoint 3.NSSize/CGSize 4.NSRect/CGRct *///
NSRange/CGRange(location,length)NSString *str = @"i love...
分类:
其他好文 时间:
2014-05-08 14:51:00
阅读次数:
325
inline static UIColor* getColorFromHex(NSString *hexColor)
{
if (hexColor == nil) {
return nil;
}
unsigned int red, green, blue;
NSRange range;
range.length = 2;
...
分类:
移动开发 时间:
2014-05-07 11:48:26
阅读次数:
327
UITextView上如何加上类似于UITextField的placeholder呢,其实在UITextView上加上一个UILabel,然后再实现-
(BOOL)textView:(UITextView*)textView shouldChangeTextInRange:(NSRange)rang...
分类:
移动开发 时间:
2014-05-05 11:19:55
阅读次数:
427
UITextView上如何加上类似于UITextField的placeholder呢,其实在UITextView上加上一个UILabel,然后再实现-
(BOOL)textView:(UITextView*)textView shouldChangeTextInRange:(NSRange)rang...
分类:
移动开发 时间:
2014-05-01 14:54:15
阅读次数:
462
UITextView上如何加上类似于UITextField的placeholder呢,其实在UITextView上加上一个UILabel,然后再实现
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text这个代理方法就可以了。
...
分类:
移动开发 时间:
2014-04-29 13:42:21
阅读次数:
337