
UI笔记
TaLinBoy
Android、IOS、php开发
展开
-
UI笔记:UILabel、UIButton和UITextField
#import "AppDelegate.h"@interface AppDelegate () { UIImageView *flagImageView; } @end@implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDi原创 2015-08-18 12:53:02 · 394 阅读 · 0 评论 -
iOS 网络加载转码
网络连接中有中文转码 NSString * encodingString = [string stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; 返回的数据中有%23……转码 NSString *msg = [str stringByReplacingPercentEscape原创 2016-06-03 14:17:08 · 425 阅读 · 0 评论 -
iOS http协议的解决
在Info.plist中添加 NSAppTransportSecurity NSAllowsArbitraryLoads原创 2016-06-03 14:19:46 · 615 阅读 · 0 评论 -
iOS UIView动画01
-(void) launchButtonAnimations { CGRect frame = _launchButton.frame; CGPoint center = _launchButton.center; //首尾式动画 [UIView beginAnimations:nil context:nil]; //执原创 2016-06-04 13:14:06 · 348 阅读 · 0 评论 -
iOS tableview 滑动删除
只需要实现三个代理方法就可以了 - (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath { if (tableView == _BarCodeTableView) {原创 2016-06-06 13:38:15 · 404 阅读 · 0 评论