代码创建图片播放
#import "ViewController.h"
#define kLength 15
@interface ViewController ()
@property(nonatomic, weak)UIImageView *myImage;
@property(nonatomic, weak)UILabel *myLabel;
@property(nonat...
分类:
其他好文 时间:
2015-05-09 10:21:36
阅读次数:
131
动态创建控件一、按钮二、文本输入框三、lable标签注意: 只是简单的拖拽控件会毁了你,所以最好还是手动通过代码创建控件。如果要通过代码生成按钮的话,可以在系统自带的函数viewDidLoad实现。应为每个控件都对应一个类,所以可以直接通过类创建一个对象,也就是一个控件,然后再逐步设置控件的属性。....
分类:
移动开发 时间:
2015-04-25 18:15:19
阅读次数:
172
@interface AppDelegate()
@property UILabel* show;
@end
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
...
分类:
移动开发 时间:
2015-01-21 22:35:50
阅读次数:
217
在开发过程中,并不是每次都通过storyboard拖控件完成UI界面,因为storyboard上面的界面是“固定死”的,有时候可能会在程序运行过程中动态地添加一些新的控件到界面上。比如QQ的聊天信息,是有人发出一条信息后才动态显示出来的。因此,需要掌握如何用代码动态地添加控件 实际上,storybo...
分类:
移动开发 时间:
2015-01-08 19:30:43
阅读次数:
193
1.UIView
在View里面添加的控件是x,y是以View的左上角开始算
2.UIButton
UIButton 里面包含UIlable 和 UIImageView
设置text时要用setTitle ,不能直接改 titleLabel.text 因为不知道text的状态
设置text字体时titleLabel.font
3. NSArray 懒加载...
分类:
移动开发 时间:
2014-12-26 01:00:50
阅读次数:
268
1.XML按钮定义显示:2.后台代码创建控件并注册事件import android.annotation.SuppressLint;import android.app.Activity;import android.app.ActionBar.LayoutParams;import android...
分类:
其他好文 时间:
2014-11-09 09:53:16
阅读次数:
261
//当你通过代码创建控件就会调用这个方法- (id)initWithFrame:(CGRect)frame{ self = [super initWithFrame:frame]; if (self) { [self setup]; } return self;}//当你通过storyboared或...
分类:
其他好文 时间:
2014-09-11 22:19:52
阅读次数:
273