- 浏览: 99217 次
- 性别:
- 来自: 上海
最新评论
-
softlanh:
如果我用第一种方法截取一个不规则图形,截取后只保留需要的截取后 ...
iOS 画出不规则图形 -
netkiller.github.com:
世上竟有Obj-C 这么变态的语言, []的使用都快赶上 pe ...
获取iphone键盘所在view -
374016526:
此功能建议大家不要使用,如果要显示网页的东西还是自定义或UIW ...
UITextView显示HTML内容,实现显示不同的字体和文字颜色 -
qichunren:
在哪里在哪里、
iPhone闹钟
文章列表
使用方式:
NSString *t = [NSStringstringWithFormat:@"<a href=http://www.baidu.com ><font size = 22 color=#001100>百度 </font></a>"];
RTLabelComponentsStructure *componentsDS = [RCURLLabelextractTextStyle:t];
RCURLLabel *contentlbl = [[RCURLLabel alloc] ini ...
// 心跳动画
+ (void)heartbeatView:(UIView *)view duration:(CGFloat)fDuration
{
[[selfclass] heartbeatView:view duration:fDuration maxSize:1.4fdurationPerBeat:0.5f];
}
+ (void)heartbeatView:(UIView *)view duration:(CGFloat)fDuration maxSize:(CGFloat)fMaxSize durationPerBeat:(CGFloat)fDurationPer ...
//知道怎么用私有api,要怎么获得
//要导入#import <objc/runtime.h>
NSString *className = NSStringFromClass([UIView class]);
//这里是uiview,可以改成自己想要的
const char *cClassName = [className UTF8String];
id theClass = objc_getClass(cClassName);
...
[textView setContentToHTMLString:txtStr];
<html>
<head>
</head>
<body>
<img src = "http://t1.baidu.com/it/u=1075557596,3331641536&fm=15&gp=0.jpg">
这是文字
<br/><br/>
</body>
</html>
ios自定义framework,生成framework后,真机调用dyld: Library not loaded:
这个问题其实时我们在生成自己的framework时默认的生成方式时动态的,这样就有了可变性,真机上是找不到这个framework的,因此我们只需要修改生成方式为静态的就可以了。
具体步骤
build settings 查找 mach
修改Mach-o type 为Static Library,重新生成。
好了,问题完美解决。
程序开发避免不了与服务器的交互,这里打包了一个自己写的http交互库。希望可以帮到大家。
内置一个basehttp,当我们创建自己的service可以继承实现。
KuroAppBaseHttp *baseHttp = [[KuroAppBaseHttp alloc] init];
[baseHttp setDelegate:self];
[baseHttp loadHttp:@"http://www.baidu.com" withKey:@"baidu" withData:nil withMethod:KURO_HTTP_METHOD ...
近年来写了很多IOS的程序,内付费也用到不少,使用IOS的内付费实现起来比较麻烦,这里我写了一个简单的内付费包,希望对大家有帮助。
具体使用如下:
这里的sender其实就是调用者,这里主要是为了回调使用。
[KuroStoreApi kuroStoreProductId:@"产品ID" storeSender:self storeFinishCallBackBlock:^(KuroStoreApiProductState state, NSData *transactionReceipt, id sender) {
if ...
要点是首先pixelFormat:kEAGLColorFormatRGBA8,必须有alpha层才能透明。然后view设置为透明glView.opaque = NO;[director setOpenGLView:glView];[self.viewController.view setBackgroundColor:[UIColor clearColor]];[self.viewCon
CCDataVisitor.h, #include <string> 'string' file not found
这个错误因为你的.m文件引用里.mm的文件,这里需要把.m改成.mm就可以了。
his device is no longer connected.
拔掉数据线,重启Xcode,再次连接数据线,OK
cd到工程目录下然后执行下面的命令
grep -r advertisingIdentifier .
+ (NSString *)ToHex:(int)tmpid {
NSString *endtmp = @"";
NSString *nLetterValue;
NSString *nStrat;
int ttmpig = tmpid % 16;
int tmp = tmpid / 16;
switch (ttmpig) {
case 10:
nLetterValue = @"A"; break;
case 11:
...
以下为大家提供一种绘制不规则图形的方法,实现原理利用图像的遮盖。
//// 这种是路径遮盖法
+ (UIImage*)maskImage:(UIImage*)originImage toPath:(UIBezierPath*)path
{
UIGraphicsBeginImageContextWithOptions(originImage.size, NO, 0);
[path addClip];
[originImage drawAtPoint:CGPointZero];
UIImage* img = UIGraphicsGetImageF ...
大家都知道苹果对于唯一标示管理做了多次调整,之前ios6未发布前我们都是使用udid来统计,后来ios6出现了,udid这个接口被苹果无情的封杀。但是这样难不倒程序员们,我们立刻想到了,使用mac地址+自己设定的key 做出md5,这 ...
关于ios上面旋转的问题,ios6以下我们大家都知道,
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfacOrientation
这个函数在旋转的时候会进行调用,并且我们还可以手动设置屏幕方向:
[UIApplicationsharedApplication].statusBarOrientation = UIInterfaceOrientationLandscapeLeft;
然而,ios6以后,以上两个函数都被舍弃,那么如果我们现在有两个Controller,那么我们想 ...