button.layer.cornerRadius = 10 // 这个值根据你想要的效果可以更改button.clipsToBounds = true这种方法不止可以设置按钮,UIView应该都可以设置,ImageView我试过ok,其他的UIKit用到了再试
分类:
移动开发 时间:
2014-09-03 16:32:36
阅读次数:
169
有两个图片新建一个CloseLight类CloseLight.himport<UIKit/UIKit.h>
@interfaceCloseLight:UIViewController
@property(nonatomic,assign)NSIntegertag;
@endCloseLight.m#import"CloseLight.h"
@interfaceCloseLight()
@end
@implementationCloseLight
-(id)initWithNib..
分类:
其他好文 时间:
2014-09-03 11:25:56
阅读次数:
205
新建两个类MainViewController/ButtonViewButtonView.h#import<UIKit/UIKit.h>
@interfaceButtonView:UIView
//实现target-action设计模式
//点击的时候让谁去执行方法
@property(nonatomic,assign)idtarget;
//要执行的方法
@property(nonatomic,assign)SELaction;
//..
分类:
其他好文 时间:
2014-09-03 11:25:27
阅读次数:
254
One of the added bonuses of Dynamics CRM is its ability go where you go! With theSpring ’14 Wave Update, you can now download CRM to your tablet with ...
分类:
编程语言 时间:
2014-09-03 10:49:26
阅读次数:
300
Microsoft Dynamics CRM App for Windows Phonehttp://www.windowsphone.com/en-us/store/app/dynamics-crm/bdf6ad14-8ff3-4db1-a9d5-336c50ef13eeMicrosoft Dyn...
分类:
移动开发 时间:
2014-09-03 01:25:55
阅读次数:
227
CRM系统安装需要准备的资源,crm 2013下载,sql 2012sp1下载,winserver 2012 r2下载。
分类:
其他好文 时间:
2014-09-03 00:04:15
阅读次数:
299
微软近期Open的职位:MSIT Dynamics CRM Developer (Sr. SDE, Microsoft China, Beijing)Are you interested in shaping the future vision of how we implement Dynamic...
分类:
其他好文 时间:
2014-09-02 15:36:04
阅读次数:
164
创建两个视图控制类MainViewController和SecondViewControllerAppDelegate.h#import<UIKit/UIKit.h>
@interfaceAppDelegate:UIResponder<UIApplicationDelegate>
@property(strong,nonatomic)UIWindow*window;
@endAppDelegate.m#import"AppDelegate.h"
#import"Ma..
分类:
其他好文 时间:
2014-09-02 10:38:54
阅读次数:
309
main.h#import<UIKit/UIKit.h>
#import"AppDelegate.h"
intmain(intargc,char*argv[])
{
//app的启动流程
//1.一个iOS程序的启动,在main函数开始
@autoreleasepool{
//应用程序的启动函数作用:1,启动一个时间循环,确保程序一直在执行2.创建一个应用程序对象,3.指定..
分类:
其他好文 时间:
2014-09-02 10:37:54
阅读次数:
242