好岸园IT技术学习网 hopean.com IT新闻 js网页特效 it技术 二次开发
上一页 1 2 3 4 5 6 7 ··· 12 下一页
摘要: 很多iPhone聊天程序消息显示都喜欢做成iChat的泡泡样式,这样是不是很apple呢?那么下面用一种简单的方法来实现它。主要通过UIlabel的sizeToFit方法自动计算文本区域大小UIImage的- (UIImage *)stretchableImageWithLeftCapWidth:(NSInteger)leftCapWidth topCapHeight:(NSInteger)topCapHeight;方法拉伸图片可以根据文本内容自动适应算泡泡高度- (UIImage *)stretchableImageWithLeftCapWidth:(NSInteger)leftCapWid 阅读全文
posted @ 2013-04-02 13:57 hopeanCom 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 有时候我们需要把图片、textview等view设置成圆角,如下:头文件:头文件:#import <QuartzCore/QuartzCore.h>code:view.layer.borderWidth =1;view.layer.cornerRadius =6;view.layer.masksToBounds =YES;其他方法可以实现先把当前View的opaque属性设为NO,然后在drawRect里画个圆角柜形:CGFloat radius = 20.0;CGContextRef context = UIGraphicsGetCurrentContext();CGContex 阅读全文
posted @ 2013-04-02 13:34 hopeanCom 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 这里假定的前提是, 你已经将UITableView添加到了View中, 并且在h文件中实现了UITableViewDelegate,UITableViewDataSource 这两个接口, 且已经与你后台定义的tblView建立起了关联, UITableView的datesource和delegete也都已经指向了file's owner.如果此处不太明白的话, 建议还是复习一下如何使用UITableView, 再来研究这部份.1. 首先需要做的是, 定义数据源. UITableView是需要一个数据源的, 我这用使用的是SQLITE数据库, 因此做了一个小小的分页查询. SQLIte 阅读全文
posted @ 2013-04-02 09:40 hopeanCom 阅读(454) 评论(0) 推荐(0) 编辑
摘要: objective-c中,当一个类使用到另一个类时,并且在类的头文件中需要创建被引用的指针时,如下面代码:A.h文件C代码 #import"B.h" @interfaceA:NSObject{ B*b; } @end#import "B.h" @interface A : NSObject { B *b;}@end为了简单起见:A类是引用类,B类是被引用类,这里先不考虑A类的实现文件。通常引用一个类有两种办法: 一种是通过#import方式引入;另一种是通过@class引入;这两种的方式的区别在于:1、#import方式会包含被引用类的所有信息,包括被引 阅读全文
posted @ 2013-04-01 10:54 hopeanCom 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 基本思路是这样的:1. 创建一个RootViewController,它作为delegate加载的第一个controller2. RootViewController的上半部分加载TabbarController,下半部分是自己画的控件,它用来控制Tabbar Controller加载哪个controller的3. 把Tabbar controller的Tabbar给hide掉4. RootViewController的下半部分是自己画的Tabbar,想怎么画就怎么画大家看我的截图,上面是tabbar controller,它的tabbar已经给隐藏了。下面是我自己画的自定义tabbar,还很 阅读全文
posted @ 2013-04-01 10:33 hopeanCom 阅读(215) 评论(0) 推荐(0) 编辑
摘要: addSubview 是将view加到所有层的最顶层相当于将insertSubview的atIndex参数设置成view.subviews count即[view addSubview:oneview] == [view insertSubview:oneview atIndex:view.subviews count]addSubview是加到最后insertSubview是加到指定的位置 阅读全文
posted @ 2013-04-01 10:29 hopeanCom 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 今天编写了一个简单的java程序,使用javac StaticTest.java命令竟然出现了StaticTest.java:1 错误:需要class,interface或enumStaticTest源代码如下:pblic class StaticTest{ public static void main(String args[]){ Test test1 = new Test(); Test test2 = new Test(); if(test1.i == test2.i) { System.out.println("test1.i 与 tes... 阅读全文
posted @ 2013-01-11 09:47 hopeanCom 阅读(1205) 评论(0) 推荐(0) 编辑
摘要: 学习了android开发,发现Android 隐去标题栏设置全屏的方法本篇文章来源于好岸园it技术学习网 (http://www.hopean.com)原文链接:http://www.hopean.com/devlop/详细代码如下:package com.example.gamesview;import android.os.Bundle;import android.view.Window;import android.view.WindowManager;import android.app.Activity;import android.view.Menu;public class M 阅读全文
posted @ 2013-01-09 11:46 hopeanCom 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 今天写Tab的时候由于TAB的跳转问题去查资料,倒反而发现更有趣的问题,就是如何将TAB放置在屏幕的底端。<?xml version="1.0" encoding="utf-8"?><TabHost xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/tabhost" android:layout_width="fill_parent" android:layout 阅读全文
posted @ 2013-01-07 14:05 hopeanCom 阅读(545) 评论(0) 推荐(0) 编辑
摘要: Tab选项卡是一个非常方便的组件今天查询资料知道了Android多个Activity选项卡实现本篇文章来源于好岸园it技术学习网 (http://www.hopean.com)原文链接:http://www.hopean.com/devlop/创建多个Activity比如叫FirstActivity,SecondActivity,ThirdActivity由于是简单实现, FirstActivity,SecondActivity,ThirdActivity三者代码基本相同。下面以FirstActivity为例package com.example.androidtabselector;impo 阅读全文
posted @ 2013-01-06 17:05 hopeanCom 阅读(501) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 12 下一页