上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 34 下一页
摘要: #import "RootViewController.h" @interface RootViewController () @end @implementation RootViewController - (void)viewDidLoad { [super viewDidLoad]; UIB 阅读全文
posted @ 2020-07-19 23:10 逆欢 阅读(314) 评论(0) 推荐(0) 编辑
摘要: import requests proxy='36.56.206.127:20945' #本地代理 #proxy='username:password@123.58.10.36:8080' proxies={ 'http':'http://'+proxy, 'https':'https://'+pr 阅读全文
posted @ 2020-07-17 16:30 逆欢 阅读(1147) 评论(0) 推荐(0) 编辑
摘要: 知识点 1.基础操作 2.代理协议 #import "RootViewController.h" // 第一个条件签订协议, 好比是我要卖安利的产品,我首先要签订一个协议 @interface RootViewController ()<UITableViewDelegate> @end @impl 阅读全文
posted @ 2020-07-15 00:02 逆欢 阅读(165) 评论(0) 推荐(0) 编辑
摘要: UIButton #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; //按钮 / 阅读全文
posted @ 2020-07-14 22:40 逆欢 阅读(140) 评论(0) 推荐(0) 编辑
摘要: UILabel m #import "RootViewController.h" @interface RootViewController () @end @implementation RootViewController - (void)viewDidLoad { [super viewDid 阅读全文
posted @ 2020-07-13 22:54 逆欢 阅读(214) 评论(0) 推荐(0) 编辑
摘要: app m #import "AppDelegate.h" #import "ViewController.h" @interface AppDelegate () @end @implementation AppDelegate - (BOOL)application:(UIApplication 阅读全文
posted @ 2020-07-13 22:15 逆欢 阅读(118) 评论(0) 推荐(0) 编辑
摘要: m @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.wind 阅读全文
posted @ 2020-07-13 00:19 逆欢 阅读(126) 评论(0) 推荐(0) 编辑
摘要: main #import <Foundation/Foundation.h> int main(int argc, const char * argv[]) { // 所有基本数据类型的字面前加@,都会变成NSNumber对象 @autoreleasepool { NSNumber* n1=@10; 阅读全文
posted @ 2020-07-12 23:34 逆欢 阅读(110) 评论(0) 推荐(0) 编辑
摘要: OC中的所有集合对象(NSArry,NSSet,NSDictionary)只能存储OC对象,不能存储基本数据类型 (char short int long float double)和结构体类型数值 main #import <Foundation/Foundation.h> int main(in 阅读全文
posted @ 2020-07-09 23:38 逆欢 阅读(169) 评论(0) 推荐(0) 编辑
摘要: main #import <Foundation/Foundation.h> int main(int argc, const char * argv[]) { @autoreleasepool { //NSSet 集合对象 //NSSet 使用散列表 hash table 形式 的技术存储对象 便 阅读全文
posted @ 2020-07-09 22:35 逆欢 阅读(156) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 34 下一页